blob: 7fafd3bf500bb0cae9ad4a4cda65d40a4c80c753 [file] [log] [blame]
Steven Thomas97f1f4c2018-06-01 12:04:16 -07001shared_libs = [
2 "android.hardware.configstore-utils",
3 "android.hardware.configstore@1.0",
4 "libbinder",
5 "libbufferhubqueue",
6 "libcutils",
7 "libgui",
8 "libhidlbase",
9 "liblog",
10 "libui",
11 "libutils",
12 "libnativewindow",
13 "libpdx_default_transport",
Sundong Ahn8e852f52020-04-23 21:43:55 +090014 "libSurfaceFlingerProp",
Steven Thomas97f1f4c2018-06-01 12:04:16 -070015]
16
17static_libs = [
18 "libdisplay",
19]
20
21cc_test {
22 srcs: ["vrflinger_test.cpp"],
23 // See go/apct-presubmit for documentation on how this .filter file is used
24 // by Android's automated testing infrastructure for test filtering.
25 data: ["vrflinger_test.filter"],
26 static_libs: static_libs,
27 shared_libs: shared_libs,
28 cflags: [
29 "-DLOG_TAG=\"VrFlingerTest\"",
30 "-DTRACE=0",
31 "-O0",
32 "-g",
33 "-Wall",
34 "-Werror",
35 ],
Sundong Ahn8e852f52020-04-23 21:43:55 +090036 header_libs: ["libsurfaceflinger_headers"],
Steven Thomas97f1f4c2018-06-01 12:04:16 -070037 name: "vrflinger_test",
Steven Thomas97f1f4c2018-06-01 12:04:16 -070038}