blob: d500278b1c9bae81519fa5f79f0d695b5dec7c7a [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",
14]
15
16static_libs = [
17 "libdisplay",
18]
19
20cc_test {
21 srcs: ["vrflinger_test.cpp"],
22 // See go/apct-presubmit for documentation on how this .filter file is used
23 // by Android's automated testing infrastructure for test filtering.
24 data: ["vrflinger_test.filter"],
25 static_libs: static_libs,
26 shared_libs: shared_libs,
27 cflags: [
28 "-DLOG_TAG=\"VrFlingerTest\"",
29 "-DTRACE=0",
30 "-O0",
31 "-g",
32 "-Wall",
33 "-Werror",
34 ],
35 cppflags: ["-std=c++1z"],
36 name: "vrflinger_test",
37}