• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1cc_library_shared {
2    name: "android.hardware.gatekeeper@1.0-impl",
3    defaults: ["hidl_defaults"],
4    relative_install_path: "hw",
5    vendor: true,
6
7    srcs: ["Gatekeeper.cpp"],
8
9    shared_libs: [
10        "android.hardware.gatekeeper@1.0",
11        "libhardware",
12        "libhidlbase",
13        "libhidltransport",
14        "libutils",
15        "liblog",
16    ],
17
18}
19
20cc_binary {
21    name: "android.hardware.gatekeeper@1.0-service",
22    defaults: ["hidl_defaults"],
23    relative_install_path: "hw",
24    vendor: true,
25    init_rc: ["android.hardware.gatekeeper@1.0-service.rc"],
26
27    srcs: ["service.cpp"],
28
29    shared_libs: [
30        "android.hardware.gatekeeper@1.0",
31        "libhardware",
32        "libhidlbase",
33        "libhidltransport",
34        "libutils",
35        "liblog",
36    ],
37
38}
39