blob: 092d597618793d29af5dddb4ad1f2056398dd180 [file] [log] [blame]
Dan Willemsen3106c1c2016-10-03 23:56:51 -07001// Build the unit tests,
2
3// Build the binary to $(TARGET_OUT_DATA_NATIVE_TESTS)/$(LOCAL_MODULE)
4// to integrate with auto-test framework.
5cc_test {
6 name: "libgui_test",
7
8 clang: true,
9
10 srcs: [
11 "BufferQueue_test.cpp",
12 "CpuConsumer_test.cpp",
13 "FillBuffer.cpp",
14 "GLTest.cpp",
15 "IGraphicBufferProducer_test.cpp",
16 "MultiTextureConsumer_test.cpp",
17 "Sensor_test.cpp",
18 "SRGB_test.cpp",
19 "StreamSplitter_test.cpp",
20 "SurfaceTextureClient_test.cpp",
21 "SurfaceTextureFBO_test.cpp",
22 "SurfaceTextureGLThreadToGL_test.cpp",
23 "SurfaceTextureGLToGL_test.cpp",
24 "SurfaceTextureGL_test.cpp",
25 "SurfaceTextureMultiContextGL_test.cpp",
26 "Surface_test.cpp",
27 "TextureRenderer.cpp",
28 ],
29
30 shared_libs: [
31 "liblog",
32 "libEGL",
33 "libGLESv1_CM",
34 "libGLESv2",
35 "libbinder",
36 "libcutils",
37 "libgui",
Dan Willemsen3106c1c2016-10-03 23:56:51 -070038 "libui",
39 "libutils",
40 ],
41}