blob: 4a642d387909e535fdb42f501c0b63210231f561 [file] [log] [blame]
load("//bazel:skia_rules.bzl", "exports_files_legacy", "skia_cc_library", "skia_filegroup")
package(
default_applicable_licenses = ["//:license"],
)
licenses(["notice"])
exports_files_legacy()
skia_filegroup(
name = "srcs",
srcs = [
"GrGLMakeNativeInterface_mac.cpp",
],
visibility = ["//src/gpu/ganesh/gl:__pkg__"],
)
skia_cc_library(
name = "mac_factory",
srcs = [
"GrGLMakeNativeInterface_mac.cpp",
],
hdrs = [
"//include/gpu/ganesh/gl/mac:public_hdrs",
],
defines = ["SK_DISABLE_LEGACY_GL_MAKE_NATIVE_INTERFACE"],
visibility = ["//:__pkg__"],
deps = [
"//:core",
"//:ganesh_gl",
],
)