blob: 8bd1ef141407c988554d4a7f39ddce5e3fb8c4b8 [file] [log] [blame]
Stephen Kiazyke77dce22017-03-14 15:38:12 -07001
Corey Tabaka52ea25c2017-09-13 18:02:48 -07002header_libraries = [
3 "libdvr_headers",
4]
Stephen Kiazyke77dce22017-03-14 15:38:12 -07005
6shared_libraries = [
7 "libbase",
8 "libbinder",
9 "libcutils",
10 "libgui",
11 "liblog",
12 "libhardware",
13 "libui",
14 "libutils",
15]
16
17static_libraries = [
18 "libbufferhubqueue",
19 "libbufferhub",
20 "libchrome",
21 "libdvrcommon",
22 "libpdx_default_transport",
23]
24
25cc_test {
26 srcs: ["buffer_hub_queue-test.cpp"],
Corey Tabaka52ea25c2017-09-13 18:02:48 -070027 header_libs: header_libraries,
Stephen Kiazyke77dce22017-03-14 15:38:12 -070028 static_libs: static_libraries,
29 shared_libs: shared_libraries,
30 cflags: [
Jiwen 'Steve' Cai2d82ceb2017-03-22 17:26:00 -070031 "-DLOG_TAG=\"buffer_hub_queue-test\"",
Stephen Kiazyke77dce22017-03-14 15:38:12 -070032 "-DTRACE=0",
33 "-O0",
34 "-g",
35 ],
36 name: "buffer_hub_queue-test",
37 tags: ["optional"],
38}
39
40cc_test {
41 srcs: ["buffer_hub_queue_producer-test.cpp"],
Corey Tabaka52ea25c2017-09-13 18:02:48 -070042 header_libs: header_libraries,
Stephen Kiazyke77dce22017-03-14 15:38:12 -070043 static_libs: static_libraries,
44 shared_libs: shared_libraries,
45 cflags: [
Jiwen 'Steve' Cai2d82ceb2017-03-22 17:26:00 -070046 "-DLOG_TAG=\"buffer_hub_queue_producer-test\"",
Stephen Kiazyke77dce22017-03-14 15:38:12 -070047 "-DTRACE=0",
48 "-O0",
49 "-g",
Stephen Kiazyke77dce22017-03-14 15:38:12 -070050 ],
51 name: "buffer_hub_queue_producer-test",
52 tags: ["optional"],
53}