Files
android_development/apps/Development/Android.bp
Yuntao Xu 5ec6ecafd8 Convert Development/Android.mk to Android.bp
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
2021-04-28 16:30:20 -07:00

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",
}