• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1load("@rules_cc//cc:defs.bzl", "cc_library")
2
3cc_library(
4    name = "GLES_CM_translator_static",
5    srcs = [
6        "CoreProfileEngine.cpp",
7        "GLEScmContext.cpp",
8        "GLEScmImp.cpp",
9        "GLEScmUtils.cpp",
10        "GLEScmValidate.cpp",
11    ] + glob(["*.h"]),
12    copts = [
13        "-Wno-extern-c-compat",
14    ],
15    visibility = ["//visibility:public"],
16    deps = [
17        "//:gfxstream-gl-host-common-headers",
18        "//host/apigen-codec-common",
19        "//host/gl:gl_common",
20        "//third-party/glm",
21        "@aemu//snapshot:aemu-snapshot",
22    ],
23)
24