• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    // See: http://go/android-license-faq
3    // A large-scale-change added 'default_applicable_licenses' to import
4    // all of the 'license_kinds' from "device_generic_vulkan-cereal_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: ["device_generic_vulkan-cereal_license"],
8}
9
10cc_library_static {
11    name: "gfxstream_translator_glesv2",
12    defaults: [ "gfxstream_defaults" ],
13    static_libs: [
14        "gfxstream_base",
15        "gfxstream_apigen_codec_common",
16        "gfxstream_translator_glcommon",
17        "gfxstream_angle_stub",
18    ],
19    cflags: [
20        "-fvisibility=hidden",
21        "-Wno-inconsistent-missing-override",
22    ],
23    srcs: [
24        "ANGLEShaderParser.cpp",
25        "GLESv2Context.cpp",
26        "GLESv2Imp.cpp",
27        "GLESv2Validate.cpp",
28        "ProgramData.cpp",
29        "SamplerData.cpp",
30        "ShaderParser.cpp",
31        "ShaderValidator.cpp",
32        "TransformFeedbackData.cpp",
33    ],
34}
35