blob: dafd35454f9eddb3d1115b19631cefac911b8a02 [file] [log] [blame]
Bob Badour3c538232021-02-12 21:26:48 -08001package {
2 // See: http://go/android-license-faq
3 // A large-scale-change added 'default_applicable_licenses' to import
4 // all of the 'license_kinds' from "frameworks_native_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 // SPDX-license-identifier-MIT
8 // SPDX-license-identifier-Unicode-DFS
9 default_applicable_licenses: ["frameworks_native_license"],
10}
11
Steven Thomas97f1f4c2018-06-01 12:04:16 -070012shared_libs = [
13 "android.hardware.configstore-utils",
14 "android.hardware.configstore@1.0",
15 "libbinder",
16 "libbufferhubqueue",
17 "libcutils",
18 "libgui",
19 "libhidlbase",
20 "liblog",
21 "libui",
22 "libutils",
23 "libnativewindow",
24 "libpdx_default_transport",
Sundong Ahnf7f7cde2020-04-23 21:43:55 +090025 "libSurfaceFlingerProp",
Steven Thomas97f1f4c2018-06-01 12:04:16 -070026]
27
28static_libs = [
29 "libdisplay",
30]
31
32cc_test {
33 srcs: ["vrflinger_test.cpp"],
34 // See go/apct-presubmit for documentation on how this .filter file is used
35 // by Android's automated testing infrastructure for test filtering.
36 data: ["vrflinger_test.filter"],
37 static_libs: static_libs,
38 shared_libs: shared_libs,
39 cflags: [
40 "-DLOG_TAG=\"VrFlingerTest\"",
41 "-DTRACE=0",
42 "-O0",
43 "-g",
44 "-Wall",
45 "-Werror",
46 ],
Sundong Ahnf7f7cde2020-04-23 21:43:55 +090047 header_libs: ["libsurfaceflinger_headers"],
Steven Thomas97f1f4c2018-06-01 12:04:16 -070048 name: "vrflinger_test",
Steven Thomas97f1f4c2018-06-01 12:04:16 -070049}