skia2/include/gpu/gl/BUILD.bazel
Kevin Lubick 9488e0237d [infra] Experiment generating BUILD.bazel files
This uses the gazelle extension from
https://skia-review.googlesource.com/c/buildbot/+/473357

Review Tips:
 - Ignore any changes to .h or .cpp files. Those have been
   pulled out into their own CLs.
 - Start with bazel/macros.bzl.
 - Read the CL with the generation code, if you haven't already.
 - Look at third_party/file_map_for_bazel.json.
 - See experimental/bazel_test for an idea of how a cc_binary
   would be made.
 - Spot check one or two of the BUILD.bazel files.

This CL generates the "atomic" rules for src/, include/ and
modules/skshaper, as a starting point.

`bazel build --config clang //include/...` works

`bazel build --config clang //src/...` starts compiling,
(which verifies that the BUILD.bazel files are all valid),
but runs into errors because not all third_party deps have
been resolved, and there are some files missing from the
toolchain still (e.g. EGL headers).

Change-Id: Ib7e0fb0efdb9f08655f06cbc56e9bb4cf416294b
Bug: skia:12541
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/474240
Reviewed-by: Ben Wagner <bungeman@google.com>
Reviewed-by: Leandro Lovisolo <lovisolo@google.com>
2021-11-23 18:53:16 +00:00

71 lines
1.6 KiB
Python

load("//bazel:macros.bzl", "generated_cc_atom")
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",
],
)