• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1load("//bazel:skia_rules.bzl", "exports_files_legacy", "skia_cc_deps", "skia_filegroup")
2
3licenses(["notice"])
4
5exports_files_legacy()
6
7skia_filegroup(
8    name = "srcs",
9    srcs = [
10        "CreatePlatformGLTestContext_mac.cpp",
11    ],
12    visibility = ["//tools/gpu/gl:__pkg__"],
13)
14
15skia_cc_deps(
16    name = "deps",
17    linkopts = [
18        "-framework",
19        "OpenGL",
20    ],
21    visibility = ["//tools/gpu/gl:__pkg__"],
22)
23