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.
141 lines
3.5 KiB
141 lines
3.5 KiB
// Copyright (C) 2018 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.
|
|
|
|
package {
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
java_defaults {
|
|
name: "CtsSignedConfigDefaults",
|
|
sdk_version: "current",
|
|
optimize: {
|
|
enabled: false,
|
|
},
|
|
dex_preopt: {
|
|
enabled: false,
|
|
},
|
|
srcs: ["src/**/*.java"],
|
|
}
|
|
|
|
android_test_helper_app {
|
|
name: "CtsSignedConfigTestAppV1",
|
|
defaults: ["CtsSignedConfigDefaults"],
|
|
manifest: "version1_AndroidManifest.xml",
|
|
sdk_version: "current",
|
|
test_suites: [
|
|
"cts",
|
|
"general-tests",
|
|
],
|
|
}
|
|
|
|
android_test_helper_app {
|
|
name: "CtsSignedConfigTestAppV1_instant",
|
|
defaults: ["CtsSignedConfigDefaults"],
|
|
manifest: "version1_instant_AndroidManifest.xml",
|
|
test_suites: [
|
|
"cts",
|
|
"general-tests",
|
|
],
|
|
}
|
|
|
|
android_test_helper_app {
|
|
name: "CtsSignedConfigTestAppV2",
|
|
defaults: ["CtsSignedConfigDefaults"],
|
|
manifest: "version2_AndroidManifest.xml",
|
|
test_suites: [
|
|
"cts",
|
|
"general-tests",
|
|
],
|
|
}
|
|
|
|
android_test_helper_app {
|
|
name: "CtsSignedConfigTestAppV2_instant",
|
|
defaults: ["CtsSignedConfigDefaults"],
|
|
manifest: "version2_instant_AndroidManifest.xml",
|
|
test_suites: [
|
|
"cts",
|
|
"general-tests",
|
|
],
|
|
}
|
|
|
|
android_test_helper_app {
|
|
name: "CtsSignedConfigTestApp2V1",
|
|
defaults: ["CtsSignedConfigDefaults"],
|
|
manifest: "version1_package2_AndroidManifest.xml",
|
|
test_suites: [
|
|
"cts",
|
|
"general-tests",
|
|
],
|
|
}
|
|
|
|
android_test_helper_app {
|
|
name: "CtsSignedConfigTestApp2V2",
|
|
defaults: ["CtsSignedConfigDefaults"],
|
|
manifest: "version2_package2_AndroidManifest.xml",
|
|
test_suites: [
|
|
"cts",
|
|
"general-tests",
|
|
],
|
|
}
|
|
|
|
android_test_helper_app {
|
|
name: "CtsSignedConfigTestAppV1_badsignature",
|
|
defaults: ["CtsSignedConfigDefaults"],
|
|
manifest: "version1_badsignature_AndroidManifest.xml",
|
|
test_suites: [
|
|
"cts",
|
|
"general-tests",
|
|
],
|
|
}
|
|
|
|
android_test_helper_app {
|
|
name: "CtsSignedConfigTestAppV1_badb64_config",
|
|
defaults: ["CtsSignedConfigDefaults"],
|
|
manifest: "version1_badb64_config_AndroidManifest.xml",
|
|
test_suites: [
|
|
"cts",
|
|
"general-tests",
|
|
],
|
|
}
|
|
|
|
android_test_helper_app {
|
|
name: "CtsSignedConfigTestAppV1_badb64_signature",
|
|
defaults: ["CtsSignedConfigDefaults"],
|
|
manifest: "version1_badb64_signature_AndroidManifest.xml",
|
|
test_suites: [
|
|
"cts",
|
|
"general-tests",
|
|
],
|
|
}
|
|
|
|
android_test_helper_app {
|
|
name: "CtsSignedConfigTestAppV3_configv1",
|
|
defaults: ["CtsSignedConfigDefaults"],
|
|
manifest: "version3_configv1_AndroidManifest.xml",
|
|
test_suites: [
|
|
"cts",
|
|
"general-tests",
|
|
],
|
|
}
|
|
|
|
android_test_helper_app {
|
|
name: "CtsSignedConfigTestAppV1_debug_key",
|
|
defaults: ["CtsSignedConfigDefaults"],
|
|
manifest: "version1_debug_key_AndroidManifest.xml",
|
|
test_suites: [
|
|
"cts",
|
|
"general-tests",
|
|
],
|
|
}
|