[bazel] Add shims to help translation into G3
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>
This commit is contained in:
parent
4dbd4ba474
commit
46eaab3959
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "gazelle", "select_multi", "selects")
|
||||
load("//bazel:macros.bzl", "cc_library", "exports_files_legacy", "gazelle", "select_multi", "selects")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
load("//bazel:macros.bzl", "select_multi")
|
||||
load("//bazel:macros.bzl", "cc_library", "select_multi")
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
load(":defs.bzl", "bool_flag", "string_flag_with_values")
|
||||
load("//bazel:macros.bzl", "selects")
|
||||
load(":defs.bzl", "bool_flag", "string_flag_with_values")
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
@ -14,7 +14,7 @@ config_setting(
|
||||
],
|
||||
)
|
||||
|
||||
# Apple devices with intel processors released before the shift to the M1 chip
|
||||
# Apple devices with intel processors released before the shift to the M1 chip
|
||||
# will use this config setting. Because M1 chips use the arm cpu instruction set,
|
||||
# this flag will not be used.
|
||||
config_setting(
|
||||
|
@ -102,3 +102,8 @@ def enforce_iwyu_on_package():
|
||||
def cc_library(**kwargs):
|
||||
"""A shim around cc_library that lets us tweak settings for G3 if necessary."""
|
||||
native.cc_library(**kwargs)
|
||||
|
||||
# buildifier: disable=unnamed-macro
|
||||
def exports_files_legacy():
|
||||
"""A self-annotating macro to export all files in this package for legacy G3 rules."""
|
||||
pass
|
||||
|
@ -1,6 +1,8 @@
|
||||
load("//bazel:macros.bzl", "enforce_iwyu_on_package", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "enforce_iwyu_on_package", "exports_files_legacy", "generated_cc_atom")
|
||||
load("//bazel:cc_binary_with_flags.bzl", "cc_binary_with_flags")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
enforce_iwyu_on_package()
|
||||
|
@ -1,7 +1,9 @@
|
||||
load("//bazel:macros.bzl", "enforce_iwyu_on_package", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "enforce_iwyu_on_package", "exports_files_legacy", "generated_cc_atom")
|
||||
load("@rules_cc//cc:defs.bzl", "cc_binary")
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
enforce_iwyu_on_package()
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,6 +1,9 @@
|
||||
load("//bazel:macros.bzl", "exports_files_legacy")
|
||||
load("@emsdk//emscripten_toolchain:wasm_rules.bzl", "wasm_cc_binary")
|
||||
load("//bazel:cc_binary_with_flags.bzl", "cc_binary_with_flags")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
LINKOPTS = [
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "cc_library", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "enforce_iwyu_on_package", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "enforce_iwyu_on_package", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
4
include/third_party/skcms/BUILD.bazel
vendored
4
include/third_party/skcms/BUILD.bazel
vendored
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
4
include/third_party/vulkan/BUILD.bazel
vendored
4
include/third_party/vulkan/BUILD.bazel
vendored
@ -1,3 +1,7 @@
|
||||
load("//bazel:macros.bzl", "cc_library", "exports_files_legacy")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
cc_library(
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
load("//bazel:macros.bzl", "exports_files_legacy")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
# This rule is a convenient way to build all the task drivers and copy them all into a single
|
||||
|
@ -1,5 +1,8 @@
|
||||
load("//bazel:macros.bzl", "exports_files_legacy")
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
go_library(
|
||||
|
@ -1,5 +1,8 @@
|
||||
load("//bazel:macros.bzl", "exports_files_legacy")
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
go_library(
|
||||
|
@ -1,5 +1,8 @@
|
||||
load("//bazel:macros.bzl", "exports_files_legacy")
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", "go_test")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
go_library(
|
||||
|
@ -1,5 +1,8 @@
|
||||
load("//bazel:macros.bzl", "exports_files_legacy")
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
go_library(
|
||||
|
@ -1,5 +1,8 @@
|
||||
load("//bazel:macros.bzl", "exports_files_legacy")
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
go_library(
|
||||
|
@ -1,5 +1,8 @@
|
||||
load("//bazel:macros.bzl", "exports_files_legacy")
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
go_library(
|
||||
|
@ -1,5 +1,8 @@
|
||||
load("//bazel:macros.bzl", "exports_files_legacy")
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", "go_test")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
go_library(
|
||||
|
@ -1,5 +1,8 @@
|
||||
load("//bazel:macros.bzl", "exports_files_legacy")
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", "go_test")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
go_library(
|
||||
|
@ -1,5 +1,8 @@
|
||||
load("//bazel:macros.bzl", "exports_files_legacy")
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", "go_test")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
go_library(
|
||||
|
@ -1,5 +1,8 @@
|
||||
load("//bazel:macros.bzl", "exports_files_legacy")
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
go_library(
|
||||
|
@ -1,5 +1,8 @@
|
||||
load("//bazel:macros.bzl", "exports_files_legacy")
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
go_library(
|
||||
|
@ -1,5 +1,8 @@
|
||||
load("//bazel:macros.bzl", "exports_files_legacy")
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
go_library(
|
||||
|
@ -1,5 +1,8 @@
|
||||
load("//bazel:macros.bzl", "exports_files_legacy")
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
go_library(
|
||||
|
@ -1,5 +1,8 @@
|
||||
load("//bazel:macros.bzl", "exports_files_legacy")
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
go_library(
|
||||
|
@ -1,5 +1,8 @@
|
||||
load("//bazel:macros.bzl", "exports_files_legacy")
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
go_library(
|
||||
|
@ -1,8 +1,11 @@
|
||||
load("//bazel:macros.bzl", "exports_files_legacy")
|
||||
load("@emsdk//emscripten_toolchain:wasm_rules.bzl", "wasm_cc_binary")
|
||||
load("//bazel/common_config_settings:defs.bzl", "bool_flag")
|
||||
load("//bazel:cc_binary_with_flags.bzl", "cc_binary_with_flags")
|
||||
load("//bazel:karma_test.bzl", "karma_test")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
package(default_visibility = ["//:__subpackages__"])
|
||||
|
@ -1,5 +1,8 @@
|
||||
load("//bazel:macros.bzl", "exports_files_legacy")
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
go_library(
|
||||
|
@ -1,3 +1,7 @@
|
||||
load("//bazel:macros.bzl", "exports_files_legacy")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
filegroup(
|
||||
|
@ -1,3 +1,7 @@
|
||||
load("//bazel:macros.bzl", "cc_library", "exports_files_legacy")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
cc_library(
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
load("//bazel:macros.bzl", "cc_library", "exports_files_legacy")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
cc_library(
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
load("//bazel:macros.bzl", "cc_library", "exports_files_legacy")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
cc_library(
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
load("//bazel:macros.bzl", "cc_library", "exports_files_legacy")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
cc_library(
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
load("//bazel:macros.bzl", "cc_library", "exports_files_legacy")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
cc_library(
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
load("//bazel:macros.bzl", "cc_library", "exports_files_legacy")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
cc_library(
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
load("//bazel:macros.bzl", "cc_library", "exports_files_legacy")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
cc_library(
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
load("//bazel:macros.bzl", "generated_cc_atom")
|
||||
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
||||
|
||||
exports_files_legacy()
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user