1load("//bazel:macros.bzl", "generated_cc_atom") 2 3generated_cc_atom( 4 name = "GLTestContext_angle_hdr", 5 hdrs = ["GLTestContext_angle.h"], 6 visibility = ["//:__subpackages__"], 7 deps = ["//tools/gpu/gl:GLTestContext_hdr"], 8) 9 10generated_cc_atom( 11 name = "GLTestContext_angle_src", 12 srcs = ["GLTestContext_angle.cpp"], 13 visibility = ["//:__subpackages__"], 14 deps = [ 15 ":GLTestContext_angle_hdr", 16 "//include/core:SkTime_hdr", 17 "//include/gpu/gl:GrGLAssembleInterface_hdr", 18 "//include/gpu/gl:GrGLInterface_hdr", 19 "//src/core:SkTraceEvent_hdr", 20 "//src/gpu/gl:GrGLDefines_hdr", 21 "//src/gpu/gl:GrGLUtil_hdr", 22 "//src/ports:SkOSLibrary_hdr", 23 "//third_party/externals/angle2/include/platform:Platform_hdr", 24 ], 25) 26