1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| cc_library_shared {
| name: "libhwc_config",
| proprietary: true,
| srcs: [
| "DeviceConfig.cpp",
| ],
| shared_libs: [
| "libbase",
| "libcutils",
| "libutils",
| "liblog",
| "libjsoncpp",
| ],
| cflags: [
| "-Wall",
| "-Wunused",
| "-Wno-unused-parameter",
| "-Wno-unused-private-field",
| "-DLOG_TAG=\"sunxihwc\"",
| ],
| include_dirs: [
| "hardware/aw/display/include",
| ],
| }
|
| cc_binary {
| name: "parsedispconfig",
| proprietary: true,
| srcs: [
| "test.cpp",
| ],
| shared_libs: [
| "libhwc_config",
| ],
| }
|
|