1load("//bazel:macros.bzl", "generated_cc_atom") 2 3generated_cc_atom( 4 name = "GLTestContext_command_buffer_hdr", 5 hdrs = ["GLTestContext_command_buffer.h"], 6 visibility = ["//:__subpackages__"], 7 deps = ["//tools/gpu/gl:GLTestContext_hdr"], 8) 9 10generated_cc_atom( 11 name = "GLTestContext_command_buffer_src", 12 srcs = ["GLTestContext_command_buffer.cpp"], 13 visibility = ["//:__subpackages__"], 14 deps = [ 15 ":GLTestContext_command_buffer_hdr", 16 "//include/gpu/gl:GrGLAssembleInterface_hdr", 17 "//include/gpu/gl:GrGLInterface_hdr", 18 "//include/private:SkMutex_hdr", 19 "//include/private:SkOnce_hdr", 20 "//src/ports:SkOSLibrary_hdr", 21 ], 22) 23