1cc_library(
2    name = "GLES_CM_translator_static",
3    srcs = [
4        "CoreProfileEngine.cpp",
5        "GLEScmContext.cpp",
6        "GLEScmImp.cpp",
7        "GLEScmUtils.cpp",
8        "GLEScmValidate.cpp",
9    ] + glob(["*.h"]),
10    copts = [
11        "-Wno-extern-c-compat",
12    ],
13    visibility = ["//visibility:public"],
14    deps = [
15        "//external/angle:angle-headers",
16        "//hardware/google/aemu/snapshot:aemu-snapshot",
17        "//hardware/google/gfxstream:gfxstream-gl-host-common-headers",
18        "//hardware/google/gfxstream/host/apigen-codec-common",
19        "//hardware/google/gfxstream/host/gl:gl_common",
20        "//hardware/google/gfxstream/third-party/glm",
21    ],
22)
23