blob: 865573cafde26d5fd95e8a14bcdadc9847e81867 [file] [log] [blame]
Stephen Kiazyke77dce22017-03-14 15:38:12 -07001
2
3shared_libraries = [
4 "libbase",
5 "libbinder",
6 "libcutils",
7 "libgui",
8 "liblog",
9 "libhardware",
10 "libui",
11 "libutils",
12]
13
14static_libraries = [
15 "libbufferhubqueue",
16 "libbufferhub",
17 "libchrome",
18 "libdvrcommon",
19 "libpdx_default_transport",
20]
21
22cc_test {
23 srcs: ["buffer_hub_queue-test.cpp"],
24 static_libs: static_libraries,
25 shared_libs: shared_libraries,
26 cflags: [
Jiwen 'Steve' Cai2d82ceb2017-03-22 17:26:00 -070027 "-DLOG_TAG=\"buffer_hub_queue-test\"",
Stephen Kiazyke77dce22017-03-14 15:38:12 -070028 "-DTRACE=0",
29 "-O0",
30 "-g",
31 ],
32 name: "buffer_hub_queue-test",
33 tags: ["optional"],
34}
35
36cc_test {
37 srcs: ["buffer_hub_queue_producer-test.cpp"],
38 static_libs: static_libraries,
39 shared_libs: shared_libraries,
40 cflags: [
Jiwen 'Steve' Cai2d82ceb2017-03-22 17:26:00 -070041 "-DLOG_TAG=\"buffer_hub_queue_producer-test\"",
Stephen Kiazyke77dce22017-03-14 15:38:12 -070042 "-DTRACE=0",
43 "-O0",
44 "-g",
Stephen Kiazyke77dce22017-03-14 15:38:12 -070045 ],
46 name: "buffer_hub_queue_producer-test",
47 tags: ["optional"],
48}