Convert the Make file to a Soong one Bug: 186677673 Test: compared the two apk files built by Make and Soong Test: TreeHugger Change-Id: I5f9580d82b392d3913bed2c4a888928292aea7ac
31 lines
658 B
Plaintext
31 lines
658 B
Plaintext
package {
|
|
default_applicable_licenses: ["development_apps_Development_license"],
|
|
}
|
|
|
|
// See: http://go/android-license-faq
|
|
license {
|
|
name: "development_apps_Development_license",
|
|
visibility: [":__subpackages__"],
|
|
license_kinds: [
|
|
"SPDX-license-identifier-Apache-2.0",
|
|
],
|
|
license_text: [
|
|
"NOTICE",
|
|
],
|
|
}
|
|
|
|
android_app {
|
|
name: "Development",
|
|
libs: [
|
|
"android.test.runner.stubs",
|
|
"telephony-common",
|
|
"org.apache.http.legacy",
|
|
],
|
|
srcs: [
|
|
"**/*.java",
|
|
"src/com/android/development/IRemoteService.aidl",
|
|
],
|
|
platform_apis: true,
|
|
certificate: "platform",
|
|
}
|