1package { 2 default_applicable_licenses: ["Android-Apache-2.0"], 3} 4 5cc_binary { 6 name: "android.hardware.graphics.allocator-V1-service", 7 proprietary: true, 8 relative_install_path: "hw", 9 srcs: [ 10 "service.cpp", 11 ], 12 init_rc: [ 13 "android.hardware.graphics.allocator-aidl-service.rc", 14 ], 15 vintf_fragments: ["manifest_gralloc_aidl.xml"], 16 header_libs: [ 17 "libgralloc_headers", 18 ], 19 shared_libs: [ 20 "android.hardware.graphics.allocator-V1-ndk", 21 "android.hardware.graphics.allocator-aidl-impl", 22 "libbinder_ndk", 23 "liblog", 24 "libutils", 25 ], 26 static_libs: [ 27 "libaidlcommonsupport", 28 ], 29 required: [ 30 "android.hardware.graphics.allocator-aidl-impl", 31 ], 32} 33