23 lines
430 B
Python
23 lines
430 B
Python
|
|
load("//bazel:skia_rules.bzl", "exports_files_legacy", "skia_cc_deps", "skia_filegroup")
|
||
|
|
|
||
|
|
licenses(["notice"])
|
||
|
|
|
||
|
|
exports_files_legacy()
|
||
|
|
|
||
|
|
skia_filegroup(
|
||
|
|
name = "srcs",
|
||
|
|
srcs = [
|
||
|
|
"CreatePlatformGLTestContext_mac.cpp",
|
||
|
|
],
|
||
|
|
visibility = ["//tools/gpu/gl:__pkg__"],
|
||
|
|
)
|
||
|
|
|
||
|
|
skia_cc_deps(
|
||
|
|
name = "deps",
|
||
|
|
linkopts = [
|
||
|
|
"-framework",
|
||
|
|
"OpenGL",
|
||
|
|
],
|
||
|
|
visibility = ["//tools/gpu/gl:__pkg__"],
|
||
|
|
)
|