• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1cc_library_shared {
2    name: "android.hardware.boot@1.1-impl",
3    stem: "android.hardware.boot@1.0-impl-1.1",
4    defaults: [
5        "hidl_defaults",
6        "libboot_control_defaults",
7    ],
8    relative_install_path: "hw",
9    vendor: true,
10    recovery_available: true,
11    srcs: ["BootControl.cpp"],
12
13    shared_libs: [
14        "liblog",
15        "libhidlbase",
16        "libhardware",
17        "libutils",
18        "android.hardware.boot@1.0",
19        "android.hardware.boot@1.1",
20    ],
21    static_libs: [
22        "libboot_control",
23        "libfstab",
24    ],
25}
26
27cc_binary {
28    name: "android.hardware.boot@1.1-service",
29    defaults: ["hidl_defaults"],
30    relative_install_path: "hw",
31    vendor: true,
32    init_rc: ["android.hardware.boot@1.1-service.rc"],
33    srcs: ["service.cpp"],
34
35    vintf_fragments: [
36        "android.hardware.boot@1.1.xml",
37    ],
38
39    shared_libs: [
40        "liblog",
41        "libhardware",
42        "libhidlbase",
43        "libutils",
44        "android.hardware.boot@1.0",
45        "android.hardware.boot@1.1",
46    ],
47
48}
49