46eaab3959
Ran the following commands: find -name "BUILD.bazel" -exec sed -i -e '1iload("//bazel:macros.bzl", "cc_library", "exports_files_legacy")\nexports_files_legacy()' {} + buildifier --lint=fix --mode=fix -r . This had the effect of making sure we can export all of our files in G3 (until we no longer have legacy targets) and making all of our cc_libraries shim-able. bazel/macros.bzl has the human-contributed changes, the rest were mechanical. Change-Id: I8e24e30e74b038cfd072cdbe4078bfd1d213dd46 Bug: skia:13211 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/535359 Reviewed-by: Ben Wagner <bungeman@google.com>
30 lines
921 B
Python
30 lines
921 B
Python
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
|
|
|
exports_files_legacy()
|
|
|
|
licenses(["notice"])
|
|
|
|
generated_cc_atom(
|
|
name = "SkSLPrecompile_src",
|
|
srcs = ["SkSLPrecompile.cpp"],
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//include/core:SkGraphics_hdr",
|
|
"//include/core:SkStream_hdr",
|
|
"//include/private:SkStringView_hdr",
|
|
"//src/core:SkCpu_hdr",
|
|
"//src/core:SkOpts_hdr",
|
|
"//src/opts:SkChecksum_opts_hdr",
|
|
"//src/opts:SkVM_opts_hdr",
|
|
"//src/sksl:SkSLCompiler_hdr",
|
|
"//src/sksl:SkSLDehydrator_hdr",
|
|
"//src/sksl:SkSLFileOutputStream_hdr",
|
|
"//src/sksl:SkSLStringStream_hdr",
|
|
"//src/sksl:SkSLUtil_hdr",
|
|
"//src/sksl/ir:SkSLUnresolvedFunction_hdr",
|
|
"//src/sksl/ir:SkSLVarDeclarations_hdr",
|
|
"//src/utils:SkOSPath_hdr",
|
|
"//src/utils:SkShaderUtils_hdr",
|
|
],
|
|
)
|