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 "libutils", 14 "liblog", 15 ], 16 17} 18 19cc_binary { 20 name: "android.hardware.gatekeeper@1.0-service", 21 defaults: ["hidl_defaults"], 22 relative_install_path: "hw", 23 vendor: true, 24 init_rc: ["android.hardware.gatekeeper@1.0-service.rc"], 25 26 srcs: ["service.cpp"], 27 28 shared_libs: [ 29 "android.hardware.gatekeeper@1.0", 30 "libhardware", 31 "libhidlbase", 32 "libutils", 33 "liblog", 34 ], 35 36} 37