• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1
2header_libraries = [
3    "libdvr_headers",
4]
5
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"],
27    header_libs: header_libraries,
28    static_libs: static_libraries,
29    shared_libs: shared_libraries,
30    cflags: [
31        "-DLOG_TAG=\"buffer_hub_queue-test\"",
32        "-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"],
42    header_libs: header_libraries,
43    static_libs: static_libraries,
44    shared_libs: shared_libraries,
45    cflags: [
46        "-DLOG_TAG=\"buffer_hub_queue_producer-test\"",
47        "-DTRACE=0",
48        "-O0",
49        "-g",
50    ],
51    name: "buffer_hub_queue_producer-test",
52    tags: ["optional"],
53}
54