summaryrefslogtreecommitdiff
path: root/opengl/tests/gl_perf/Android.bp
blob: 25a317c3e3ff745dab16f5e7afd31ffda0354947 (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
cc_test {
    name: "test-opengl-gl2_perf",

    srcs: [
        "gl2_perf.cpp",
        "filltest.cpp",
    ],

    gtest: false,

    shared_libs: [
        "libcutils",
        "liblog",
        "libEGL",
        "libGLESv2",
        "libui",
        "libgui",
        "libutils",
    ],

    static_libs: ["libglTest"],

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