• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1subdirs = [
2    "*"
3]
4
5cc_defaults {
6    name: "hidl_defaults",
7    cflags: [
8        "-Wall",
9        "-Werror",
10    ],
11}
12
13// VTS tests must link to HAL definition libraries statically.
14cc_defaults {
15    name: "VtsHalTargetTestDefaults",
16    defaults: ["hidl_defaults"],
17
18    // Lists all dependencies that can *not* be expected on the device.
19    static_libs: [
20        "VtsHalHidlTargetTestBase",
21    ],
22    group_static_libs: true,
23
24    // Lists all system dependencies that can be expected on the device.
25    shared_libs: [
26        "libbase",
27        // All the following are dependencies of any HAL definition library.
28        "libcutils",
29        "liblog",
30        "libhidlbase",
31        "libhidltransport",
32        "libhwbinder",
33        "libutils",
34    ],
35    cflags: [
36        "-O0",
37        "-g",
38    ],
39
40}
41