f4d0c2c9c8
It's time to better organize //third_party/BUILD.bazel This CL starts by moving the "third party" stuff we closely own. Change-Id: I3e0be0044b790794e94f34af6202860ce0a7b7aa Bug: skia:12541 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/531999 Reviewed-by: Ben Wagner <bungeman@google.com>
15 lines
253 B
Python
15 lines
253 B
Python
load("//bazel:macros.bzl", "generated_cc_atom")
|
|
|
|
licenses(["notice"])
|
|
|
|
exports_files(
|
|
["skcms.h"],
|
|
["//third_party/skcms:__pkg__"],
|
|
)
|
|
|
|
generated_cc_atom(
|
|
name = "skcms_hdr",
|
|
hdrs = ["skcms.h"],
|
|
visibility = ["//:__subpackages__"],
|
|
)
|