summaryrefslogtreecommitdiff
path: root/opengl/tests/EGLTest/Android.bp
blob: e3912a84e68c54afe22431d2bac61f6dcd2306f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40

cc_test {

    name: "EGL_test",

    srcs: [
        "egl_cache_test.cpp",
        "EGL_test.cpp",
    ],

    cflags: [
        "-Wall",
        "-Werror",
    ],

    shared_libs: [
        "android.hardware.configstore@1.0",
        "android.hardware.configstore-utils",
        "libEGL",
        "libbase",
        "libcutils",
        "libbinder",
        "libgui",
        "libhidlbase",
        "liblog",
        "libutils",
        "libnativewindow",
        "libSurfaceFlingerProp",
    ],

    include_dirs: [
        "frameworks/native/opengl/libs",
        "frameworks/native/opengl/libs/EGL",
    ],

    header_libs: [
        "bionic_libc_platform_headers",
        "libsurfaceflinger_headers",
    ],
}