blob: 5a3c3a636b3915fa4c454c3fd6731cbd568debfa [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",
Chih-Hung Hsiehe1900832017-10-05 14:27:38 -070031 "-Wall",
32 "-Werror",
33 "-Wno-error=sign-compare", // to fix later
Stephen Kiazyke77dce22017-03-14 15:38:12 -070034 ],
35 name: "buffer_hub_queue-test",
36 tags: ["optional"],
37}
38
39cc_test {
40 srcs: ["buffer_hub_queue_producer-test.cpp"],
41 static_libs: static_libraries,
42 shared_libs: shared_libraries,
43 cflags: [
Jiwen 'Steve' Cai2d82ceb2017-03-22 17:26:00 -070044 "-DLOG_TAG=\"buffer_hub_queue_producer-test\"",
Stephen Kiazyke77dce22017-03-14 15:38:12 -070045 "-DTRACE=0",
46 "-O0",
47 "-g",
Chih-Hung Hsiehe1900832017-10-05 14:27:38 -070048 "-Wall",
49 "-Werror",
Stephen Kiazyke77dce22017-03-14 15:38:12 -070050 ],
51 name: "buffer_hub_queue_producer-test",
52 tags: ["optional"],
53}