skia2/tools/gpu/gl/angle/BUILD.bazel
Kevin Lubick 83cee23c98 [bazel] Run buildifier on BUILD.bazel files
buildifier --lint=fix -r .

Change-Id: I6a41858270d20137978f8271c8f6160b51120777
Bug: skia:12541
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/529751
Reviewed-by: Ben Wagner <bungeman@google.com>
2022-04-14 18:13:43 +00:00

28 lines
838 B
Python

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