• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1load("//bazel:skia_rules.bzl", "exports_files_legacy", "skia_cc_deps", "skia_filegroup")
2
3package(
4    default_applicable_licenses = ["//:license"],
5)
6
7licenses(["notice"])
8
9exports_files_legacy()
10
11skia_filegroup(
12    name = "srcs",
13    srcs = [
14        "CreatePlatformGLTestContext_egl.cpp",
15        "//include/gpu/gl/egl:public_hdrs",
16        "//src/gpu/ganesh/gl/egl:srcs",
17    ],
18    visibility = ["//tools/gpu/gl:__pkg__"],
19)
20
21skia_cc_deps(
22    name = "deps",
23    linkopts = [
24        "-lEGL",
25        "-lGLESv2",
26    ],
27    visibility = ["//tools/gpu/gl:__pkg__"],
28)
29