• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1
2package {
3    // See: http://go/android-license-faq
4    // A large-scale-change added 'default_applicable_licenses' to import
5    // all of the 'license_kinds' from "frameworks_native_license"
6    // to get the below license kinds:
7    //   SPDX-license-identifier-Apache-2.0
8    default_applicable_licenses: ["frameworks_native_license"],
9}
10
11cc_test {
12
13    name: "EGL_test",
14
15    srcs: [
16        "egl_cache_test.cpp",
17        "EGL_test.cpp",
18    ],
19
20    cflags: [
21        "-Wall",
22        "-Werror",
23    ],
24
25    shared_libs: [
26        "android.hardware.configstore@1.0",
27        "android.hardware.configstore-utils",
28        "libEGL",
29        "libbase",
30        "libcutils",
31        "libbinder",
32        "libgui",
33        "libhidlbase",
34        "liblog",
35        "libutils",
36        "libnativewindow",
37        "libSurfaceFlingerProp",
38    ],
39
40    include_dirs: [
41        "frameworks/native/opengl/libs",
42        "frameworks/native/opengl/libs/EGL",
43    ],
44
45    header_libs: [
46        "bionic_libc_platform_headers",
47        "libsurfaceflinger_headers",
48    ],
49}
50