1load("//bazel:skia_rules.bzl", "exports_files_legacy", "skia_cc_deps", "skia_filegroup") 2 3licenses(["notice"]) 4 5exports_files_legacy() 6 7skia_filegroup( 8 name = "srcs", 9 srcs = [ 10 "CreatePlatformGLTestContext_glx.cpp", 11 ], 12 visibility = ["//tools/gpu/gl:__pkg__"], 13) 14 15skia_cc_deps( 16 name = "deps", 17 linkopts = [ 18 "-lGL", 19 "-lGLU", 20 "-lX11", 21 "-lxcb", # dep of X11 22 "-lXau", # dep of xcb 23 "-lXdmcp", # dep of xcb 24 ], 25 visibility = ["//tools/gpu/gl:__pkg__"], 26) 27