]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - android/platform-hardware-interfaces.git/blob - Android.bp
Merge "Add monostate to optional safe unions."
[android/platform-hardware-interfaces.git] / Android.bp
1 hidl_package_root {
2     name: "android.hardware",
3 }
5 cc_defaults {
6     name: "hidl_defaults",
7     cflags: [
8         "-Wall",
9         "-Werror",
10     ],
11 }
13 // VTS tests must link to HAL definition libraries statically.
14 cc_defaults {
15     name: "VtsHalTargetTestDefaults",
16     defaults: ["hidl_defaults"],
18     // Lists all dependencies that can *not* be expected on the device.
19     static_libs: [
20         "VtsHalHidlTargetTestBase",
21         "libhidl-gen-utils",
22     ],
23     group_static_libs: true,
25     // Lists all system dependencies that can be expected on the device.
26     shared_libs: [
27         "libbase",
28         // All the following are dependencies of any HAL definition library.
29         "libcutils",
30         "liblog",
31         "libhidlbase",
32         "libhidltransport",
33         "libhwbinder",
34         "libutils",
35     ],
36     cflags: [
37         "-O0",
38         "-g",
39     ],
41 }