skia2/tools/gpu/gl/angle/BUILD.bazel
Kevin Lubick c3a448ec61 [bazel] Put licenses() after legacy_exports
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>
2022-05-02 15:04:33 +00:00

30 lines
886 B
Python

load("//bazel:macros.bzl", "exports_files_legacy", "generated_cc_atom")
licenses(["notice"])
exports_files_legacy()
generated_cc_atom(
name = "GLTestContext_angle_hdr",
hdrs = ["GLTestContext_angle.h"],
visibility = ["//:__subpackages__"],
deps = ["//tools/gpu/gl:GLTestContext_hdr"],
)
generated_cc_atom(
name = "GLTestContext_angle_src",
srcs = ["GLTestContext_angle.cpp"],
visibility = ["//:__subpackages__"],
deps = [
":GLTestContext_angle_hdr",
"//include/core:SkTime_hdr",
"//include/gpu/gl:GrGLAssembleInterface_hdr",
"//include/gpu/gl:GrGLInterface_hdr",
"//src/core:SkTraceEvent_hdr",
"//src/gpu/ganesh/gl:GrGLDefines_impl_hdr",
"//src/gpu/ganesh/gl:GrGLUtil_hdr",
"//src/ports:SkOSLibrary_hdr",
"//third_party/externals/angle2/include/platform:Platform_hdr",
],
)