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 = "ios_factory", 11 srcs = [ 12 "GrGLMakeNativeInterface_iOS.cpp", 13 ], 14 hdrs = [ 15 "//include/gpu/ganesh/gl/ios:public_hdrs", 16 ], 17 defines = ["SK_DISABLE_LEGACY_GL_MAKE_NATIVE_INTERFACE"], 18 visibility = [ 19 "//:__pkg__", 20 "//tools/window:__pkg__", 21 ], 22 deps = [ 23 "//:core", 24 "//:ganesh_gl", 25 ], 26) 27