... so that the build system can distinguish testing APEXes and installable APEXes, and apply different rules to them. Bug: 146308764 Test: m Change-Id: I6ffd1cfe0f83c032d6fe3fa11e38c3c6c763425a
47 lines
1.5 KiB
Plaintext
47 lines
1.5 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.
|
|
|
|
apex_test {
|
|
name: "test_com.android.sdkext",
|
|
visibility: [ "//system/apex/tests" ],
|
|
defaults: ["com.android.sdkext-defaults"],
|
|
manifest: "test_manifest.json",
|
|
prebuilts: [ "sdkinfo_45" ],
|
|
file_contexts: ":com.android.sdkext-file_contexts",
|
|
installable: false, // Should never be installed on the systemimage
|
|
multilib: {
|
|
prefer32: {
|
|
binaries: ["derive_sdk_prefer32"],
|
|
},
|
|
},
|
|
// The automated test infra ends up building this apex for 64+32-bit and
|
|
// then installs it on a 32-bit-only device. Work around this weirdness
|
|
// by preferring 32-bit.
|
|
compile_multilib: "prefer32",
|
|
}
|
|
|
|
genrule {
|
|
name: "sdkinfo_45_src",
|
|
out: [ "sdkinfo.binarypb" ],
|
|
tools: [ "gen_sdkinfo" ],
|
|
cmd: "$(location) -v 45 -o $(out)",
|
|
}
|
|
|
|
prebuilt_etc {
|
|
name: "sdkinfo_45",
|
|
src: ":sdkinfo_45_src",
|
|
filename: "sdkinfo.binarypb",
|
|
installable: false,
|
|
}
|