1load("//bazel:skia_rules.bzl", "exports_files_legacy", "skia_cc_deps", "skia_filegroup") 2 3package( 4 default_applicable_licenses = ["//:license"], 5) 6 7licenses(["notice"]) 8 9exports_files_legacy() 10 11skia_filegroup( 12 name = "private_hdrs", 13 srcs = [ 14 "SkWGL.h", 15 ], 16 visibility = ["//tools/gpu/gl:__pkg__"], 17) 18 19skia_filegroup( 20 name = "srcs", 21 srcs = [ 22 "CreatePlatformGLTestContext_win.cpp", 23 "SkWGL_win.cpp", 24 ], 25 visibility = ["//tools/gpu/gl:__pkg__"], 26) 27 28skia_cc_deps( 29 name = "deps", 30 linkopts = [ 31 "-lGdi32", 32 "-lOpenGL32", # TODO(kjlubick) This will not work compiling for Windows on arm64 33 ], 34 visibility = ["//tools/gpu/gl:__pkg__"], 35) 36