1
2cc_test {
3
4    name: "EGL_test",
5
6    srcs: [
7        "egl_cache_test.cpp",
8        "EGL_test.cpp",
9    ],
10
11    cflags: [
12        "-Wall",
13        "-Werror",
14    ],
15
16    shared_libs: [
17        "android.hardware.configstore@1.0",
18        "android.hardware.configstore-utils",
19        "libEGL",
20        "libbase",
21        "libcutils",
22        "libbinder",
23        "libgui",
24        "libhidlbase",
25        "liblog",
26        "libutils",
27        "libnativewindow",
28        "libSurfaceFlingerProp",
29    ],
30
31    include_dirs: [
32        "frameworks/native/opengl/libs",
33        "frameworks/native/opengl/libs/EGL",
34    ],
35
36    header_libs: [
37        "bionic_libc_platform_headers",
38        "libsurfaceflinger_headers",
39    ],
40}
41