blob: a80691f1142d2c8822bf737a93e6a24bf129722c [file] [log] [blame]
Fan Xucfd12742018-09-14 13:23:52 -07001cc_test {
2 name: "buffer_hub_binder_service-test",
3 srcs: ["buffer_hub_binder_service-test.cpp"],
4 cflags: [
5 "-DLOG_TAG=\"buffer_hub_binder_service-test\"",
6 "-DTRACE=0",
7 "-DATRACE_TAG=ATRACE_TAG_GRAPHICS",
8 ],
Fan Xu7a0f33e2018-09-20 16:21:35 -07009 header_libs: ["libdvr_headers"],
10 static_libs: [
11 "libbufferhub",
12 "libbufferhubd",
13 "libgmock",
14 ],
Fan Xucfd12742018-09-14 13:23:52 -070015 shared_libs: [
16 "libbase",
17 "libbinder",
18 "liblog",
Fan Xu7a0f33e2018-09-20 16:21:35 -070019 "libpdx_default_transport",
20 "libui",
Fan Xucfd12742018-09-14 13:23:52 -070021 "libutils",
22 ],
Jiwen 'Steve' Cai9f7b7f32018-10-10 15:05:01 -070023
24 // TODO(b/117568153): Temporarily opt out using libcrt.
25 no_libcrt: true,
Tianyu0229d252018-10-12 13:50:09 -070026}
27
28cc_test {
29 name: "buffer_node-test",
30 srcs: ["buffer_node-test.cpp"],
31 cflags: [
32 "-DLOG_TAG=\"buffer_node-test\"",
33 "-DTRACE=0",
34 "-DATRACE_TAG=ATRACE_TAG_GRAPHICS",
35 ],
36 header_libs: ["libdvr_headers"],
37 static_libs: [
38 "libbufferhub",
39 "libbufferhubd",
40 "libgmock",
41 ],
42 shared_libs: [
43 "libbase",
44 "libbinder",
45 "liblog",
46 "libpdx_default_transport",
47 "libui",
48 "libutils",
49 ],
50 // TODO(b/117568153): Temporarily opt out using libcrt.
51 no_libcrt: true,
52}
53