You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.1 KiB
56 lines
1.1 KiB
4 months ago
|
package {
|
||
|
// See: http://go/android-license-faq
|
||
|
// A large-scale-change added 'default_applicable_licenses' to import
|
||
|
// all of the 'license_kinds' from "system_tools_aidl_license"
|
||
|
// to get the below license kinds:
|
||
|
// SPDX-license-identifier-Apache-2.0
|
||
|
default_applicable_licenses: ["system_tools_aidl_license"],
|
||
|
}
|
||
|
|
||
|
cc_test {
|
||
|
name: "aidl_lazy_test",
|
||
|
srcs: ["main.cpp"],
|
||
|
test_suites: ["general-tests"],
|
||
|
require_root: true,
|
||
|
|
||
|
shared_libs: [
|
||
|
"libbase",
|
||
|
"liblog",
|
||
|
"libutils",
|
||
|
"libbinder",
|
||
|
],
|
||
|
|
||
|
static_libs: [
|
||
|
"lazy_test_service_aidl-cpp",
|
||
|
],
|
||
|
}
|
||
|
|
||
|
cc_binary {
|
||
|
name: "aidl_lazy_test_server",
|
||
|
srcs: [
|
||
|
"server.cpp",
|
||
|
"LazyTestService.cpp",
|
||
|
],
|
||
|
init_rc: ["aidl_lazy_test_server.rc"],
|
||
|
system_ext_specific: true,
|
||
|
|
||
|
shared_libs: [
|
||
|
"libbinder",
|
||
|
"liblog",
|
||
|
"libutils",
|
||
|
],
|
||
|
|
||
|
static_libs: [
|
||
|
"lazy_test_service_aidl-cpp",
|
||
|
],
|
||
|
}
|
||
|
|
||
|
aidl_interface {
|
||
|
name: "lazy_test_service_aidl",
|
||
|
unstable: true,
|
||
|
flags: ["-Werror"],
|
||
|
srcs: [
|
||
|
"ILazyTestService.aidl",
|
||
|
],
|
||
|
}
|