1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
load("//bazel:skia_rules.bzl", "generate_cpp_files_for_headers", "skia_filegroup")
package(
default_applicable_licenses = ["//:license"],
)
licenses(["notice"])
SKSL_PRIVATE_HDRS = ["SkSLSampleUsage.h"]
CORE_PRIV_HDRS = [
# Files listed here will be available to Skia internals via the core_priv target.
"SkIDChangeListener.h",
"SkGainmapShader.h",
"SkGainmapInfo.h",
"SkHdrMetadata.h",
]
CORE_SRCS = [
# We really don't want these headers to be used outside of SkPath and SkPathBuilder
# so we add it to core under srcs instead to enforce that.
"SkPathRef.h",
"SkWeakRefCnt.h",
]
DECODE_SRCS_HDRS = [
"SkEncodedInfo.h",
"SkExif.h",
]
JPEG_DECODE_SRCS_HDRS = [
"SkJpegMetadataDecoder.h",
"SkXmp.h",
]
# In own skia_filegroup for mapping to the //gn/sksl.gni file.
skia_filegroup(
name = "sksl_private_hdrs",
srcs = SKSL_PRIVATE_HDRS,
)
skia_filegroup(
name = "core_priv_hdrs",
srcs = CORE_PRIV_HDRS + SKSL_PRIVATE_HDRS,
visibility = ["//src/core:__pkg__"],
)
skia_filegroup(
name = "core_srcs",
srcs = CORE_SRCS,
visibility = ["//src/core:__pkg__"],
)
skia_filegroup(
name = "decode_srcs",
srcs = DECODE_SRCS_HDRS,
visibility = ["//src/codec:__pkg__"],
)
skia_filegroup(
name = "jpeg_decode_srcs",
srcs = JPEG_DECODE_SRCS_HDRS,
visibility = ["//src/codec:__pkg__"],
)
generate_cpp_files_for_headers(
name = "headers_to_compile",
headers = SKSL_PRIVATE_HDRS +
CORE_PRIV_HDRS +
CORE_SRCS +
DECODE_SRCS_HDRS +
JPEG_DECODE_SRCS_HDRS,
)
|