c3a448ec61
G3 prefers license() first. This was done mechanically with a big find/replace Change-Id: I8c33c7bc10a6bec42e966cad81c259954e841811 Bug: skia:13211 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/535898 Reviewed-by: Ben Wagner <bungeman@google.com>
75 lines
1.7 KiB
Python
75 lines
1.7 KiB
Python
load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
|
|
|
|
licenses(["notice"])
|
|
|
|
exports_files_legacy()
|
|
|
|
generated_cc_atom(
|
|
name = "GrGLAssembleHelpers_hdr",
|
|
hdrs = ["GrGLAssembleHelpers.h"],
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [":GrGLAssembleInterface_hdr"],
|
|
)
|
|
|
|
generated_cc_atom(
|
|
name = "GrGLAssembleInterface_hdr",
|
|
hdrs = ["GrGLAssembleInterface.h"],
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [":GrGLInterface_hdr"],
|
|
)
|
|
|
|
generated_cc_atom(
|
|
name = "GrGLConfig_chrome_hdr",
|
|
hdrs = ["GrGLConfig_chrome.h"],
|
|
visibility = ["//:__subpackages__"],
|
|
)
|
|
|
|
generated_cc_atom(
|
|
name = "GrGLConfig_hdr",
|
|
hdrs = ["GrGLConfig.h"],
|
|
visibility = ["//:__subpackages__"],
|
|
deps = ["//include/gpu:GrTypes_hdr"],
|
|
)
|
|
|
|
generated_cc_atom(
|
|
name = "GrGLExtensions_hdr",
|
|
hdrs = ["GrGLExtensions.h"],
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
":GrGLFunctions_hdr",
|
|
"//include/core:SkString_hdr",
|
|
"//include/private:SkTArray_hdr",
|
|
],
|
|
)
|
|
|
|
generated_cc_atom(
|
|
name = "GrGLFunctions_hdr",
|
|
hdrs = ["GrGLFunctions.h"],
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
":GrGLTypes_hdr",
|
|
"//include/private:SkTLogic_hdr",
|
|
],
|
|
)
|
|
|
|
generated_cc_atom(
|
|
name = "GrGLInterface_hdr",
|
|
hdrs = ["GrGLInterface.h"],
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
":GrGLExtensions_hdr",
|
|
":GrGLFunctions_hdr",
|
|
"//include/core:SkRefCnt_hdr",
|
|
],
|
|
)
|
|
|
|
generated_cc_atom(
|
|
name = "GrGLTypes_hdr",
|
|
hdrs = ["GrGLTypes.h"],
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
":GrGLConfig_hdr",
|
|
"//include/core:SkRefCnt_hdr",
|
|
],
|
|
)
|