1load("//bazel:skia_rules.bzl", "skia_cc_library") 2 3package( 4 default_applicable_licenses = ["//:license"], 5) 6 7licenses(["notice"]) 8 9skia_cc_library( 10 name = "epoxy_factory", 11 srcs = [ 12 "GrGLMakeEpoxyEGLInterface.cpp", 13 ], 14 hdrs = [ 15 "//include/gpu/ganesh/gl/epoxy:public_hdrs", 16 ], 17 linkopts = ["-lepoxy"], 18 visibility = ["//:__pkg__"], 19 deps = [ 20 "//:core", 21 "//:ganesh_gl", 22 ], 23) 24