1cc_test { 2 name: "aidl_lazy_test", 3 srcs: ["main.cpp"], 4 test_suites: ["general-tests"], 5 require_root: true, 6 7 shared_libs: [ 8 "libbase", 9 "liblog", 10 "libutils", 11 "libbinder", 12 ], 13 14 static_libs: [ 15 "lazy_test_service_aidl-cpp", 16 ], 17} 18 19cc_binary { 20 name: "aidl_lazy_test_server", 21 srcs: [ 22 "server.cpp", 23 "LazyTestService.cpp", 24 ], 25 init_rc: ["aidl_lazy_test_server.rc"], 26 system_ext_specific: true, 27 28 shared_libs: [ 29 "libbinder", 30 "liblog", 31 "libutils", 32 ], 33 34 static_libs: [ 35 "lazy_test_service_aidl-cpp", 36 ], 37} 38 39aidl_interface { 40 name: "lazy_test_service_aidl", 41 unstable: true, 42 srcs: [ 43 "ILazyTestService.aidl", 44 ], 45} 46