Files
frameworks_base/packages/CtsShim/build/Android.bp
Dario Freni fa54812b1f Convert Android.mk to Android.bp for CtsShim*
Bug: 138429615
Test: File was mostly auto-generated via `androidmk`, except the
manifest generation bit. All modules verified to be compiling, and
correct hash verified beign present in the CtsShimPriv manifest:

$ sha512sum -b \
out/soong/.intermediates/frameworks/base/packages/CtsShim/build/CtsShimPrivUpgrade/android_common/CtsShimPrivUpgrade.apk
88828701aa191d9cfd7fe839bc0d0ba159e3c21dd85fb5bcd7d15e9e66ea7d88d8f6e2369a911b567571a6750e424f3c1424a927f8fde559535c7329778b7eb9

$ sha512sum -b \
out/soong/.intermediates/frameworks/base/packages/CtsShim/build/CtsShimPrivUpgradeWrongSHA/android_common/CtsShimPrivUpgradeWrongSHA.apk
55df1add673f13671e35de14540b427320f52fafff593c56e6dcc81d8b4fbde508d596edf8a326f764c58b70bcb94b63c6baacba1f8c6e4940c179a77dfc1ab1

$ aapt2 dump xmltree --file AndroidManifest.xml \
out/soong/.intermediates/frameworks/base/packages/CtsShim/build/CtsShimPriv/android_common/CtsShimPriv.apk \
| grep hash
        A:
	http://schemas.android.com/apk/res/android:hash(0x01010526)="88828701aa191d9cfd7fe839bc0d0ba159e3c21dd85fb5bcd7d15e9e66ea7d88d8f6e2369a911b567571a6750e424f3c1424a927f8fde559535c7329778b7eb9"
	(Raw:
	"88828701aa191d9cfd7fe839bc0d0ba159e3c21dd85fb5bcd7d15e9e66ea7d88d8f6e2369a911b567571a6750e424f3c1424a927f8fde559535c7329778b7eb9")

Change-Id: Ie6e0df9f4f1365b5194e9748b325b421f838c65b
2019-10-28 16:28:07 +00:00

118 lines
2.9 KiB
Plaintext

// Copyright (C) 2019 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Build rules to build shim apks.
//##########################################################
// Variant: Privileged app upgrade
android_app {
name: "CtsShimPrivUpgrade",
// this needs to be a privileged application
privileged: true,
sdk_version: "current",
optimize: {
enabled: false,
},
dex_preopt: {
enabled: false,
},
manifest: "shim_priv_upgrade/AndroidManifest.xml",
compile_multilib: "both",
jni_libs: ["libshim_jni"],
}
genrule {
name: "generate_priv_manifest",
srcs: [
"shim_priv/AndroidManifest.xml",
":CtsShimPrivUpgrade"
],
out: ["AndroidManifest.xml"],
cmd: "sed -e s/__HASH__/`sha512sum -b $(location :CtsShimPrivUpgrade) | cut -d' ' -f1`/ $(location shim_priv/AndroidManifest.xml) > $(out)",
}
//##########################################################
// Variant: Privileged app
android_app {
name: "CtsShimPriv",
// this needs to be a privileged application
privileged: true,
sdk_version: "current",
optimize: {
enabled: false,
},
dex_preopt: {
enabled: false,
},
manifest: ":generate_priv_manifest",
compile_multilib: "both",
jni_libs: ["libshim_jni"],
// Explicitly uncompress native libs rather than letting the build system doing it and destroy the
// v2/v3 signature.
use_embedded_native_libs: true,
}
//##########################################################
// Variant: Privileged app upgrade w/ the wrong SHA
android_app {
name: "CtsShimPrivUpgradeWrongSHA",
// this needs to be a privileged application
privileged: true,
sdk_version: "current",
optimize: {
enabled: false,
},
dex_preopt: {
enabled: false,
},
// anything to make this package's SHA different from CtsShimPrivUpgrade
aaptflags: [
"--version-name",
"WrongSHA",
],
manifest: "shim_priv_upgrade/AndroidManifest.xml",
compile_multilib: "both",
jni_libs: ["libshim_jni"],
}
//##########################################################
// Variant: System app
android_app {
name: "CtsShim",
sdk_version: "current",
optimize: {
enabled: false,
},
dex_preopt: {
enabled: false,
},
manifest: "shim/AndroidManifest.xml",
}