]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - android/platform-hardware-interfaces.git/blob - Android.bp
Remove useless Android.mk files.
[android/platform-hardware-interfaces.git] / Android.bp
1 subdirs = [
2     "*"
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     ],
22     group_static_libs: true,
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     ],
40 }