• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1load("//bazel:skia_rules.bzl", "exports_files_legacy", "skia_cc_library", "skia_filegroup")
2
3package(
4    default_applicable_licenses = ["//:license"],
5)
6
7licenses(["notice"])
8
9exports_files_legacy()
10
11# Used for exporting to //gn/gpu.gni:skia_native_gpu_sources.
12skia_filegroup(
13    name = "srcs",
14    srcs = [
15        "GrGLMakeEpoxyEGLInterface.cpp",
16    ],
17    visibility = ["//src/gpu/ganesh/gl:__pkg__"],
18)
19
20skia_cc_library(
21    name = "epoxy_factory",
22    srcs = [
23        "GrGLMakeEpoxyEGLInterface.cpp",
24    ],
25    hdrs = [
26        "//include/gpu/ganesh/gl/epoxy:public_hdrs",
27    ],
28    linkopts = ["-lepoxy"],
29    visibility = ["//:__pkg__"],
30    deps = [
31        "//:core",
32        "//:ganesh_gl",
33    ],
34)
35