blob: e3c2de5ab3712250b32843906112c9c94dc635df [file] [log] [blame]
// Copyright (C) 2017 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: "hello_world_defaults",
defaults: ["cts_defaults"],
sdk_version: "current",
min_sdk_version: "24",
static_libs: [
"androidx.appcompat_appcompat",
"androidx-constraintlayout_constraintlayout",
"com.google.android.material_material",
],
package_splits: [
"mdpi-v4",
"hdpi-v4",
"xhdpi-v4",
"xxhdpi-v4",
"xxxhdpi-v4",
],
}
//-----------------------------------------------------------
android_test {
name: "HelloWorld5",
defaults: ["hello_world_defaults"],
srcs: ["src5/**/*.java"],
// tag this module as a cts test artifact
test_suites: [
"cts",
"general-tests",
],
v4_signature: true,
}
//-----------------------------------------------------------
android_test {
name: "HelloWorld5Profileable",
defaults: ["hello_world_defaults"],
srcs: ["src5/**/*.java"],
manifest: "AndroidManifestProfileable.xml",
// tag this module as a cts test artifact
test_suites: [
"cts",
"vts10",
"general-tests",
],
v4_signature: true,
}
//-----------------------------------------------------------
android_test {
name: "HelloWorld7",
defaults: ["hello_world_defaults"],
srcs: ["src7/**/*.java"],
// tag this module as a cts test artifact
test_suites: [
"cts",
"general-tests",
],
v4_signature: true,
}
//-----------------------------------------------------------
android_library {
name: "HelloWorldResHardeningLib",
defaults: ["cts_defaults"],
static_libs: [
"compatibility-device-util-axt",
"hamcrest-library",
"junit",
"testng",
"truth-prebuilt",
],
srcs: ["src_res_hardening_lib/**/*.java"],
resource_dirs: [],
manifest: "AndroidManifestResHardeningLib.xml",
min_sdk_version: "24",
platform_apis: true,
}
//-----------------------------------------------------------
android_test {
name: "HelloWorldResHardening",
defaults: ["hello_world_defaults"],
srcs: ["src_res_hardening/**/*.java"],
manifest: "AndroidManifestResHardening.xml",
static_libs: [
"HelloWorldResHardeningLib",
],
// tag this module as a cts test artifact
test_suites: [
"cts",
"general-tests",
],
v4_signature: true,
platform_apis: true,
}
//-----------------------------------------------------------
android_test {
name: "HelloWorldShell",
defaults: ["hello_world_defaults"],
srcs: ["src_shell/**/*.java"],
manifest: "AndroidManifestShell.xml",
// tag this module as a cts test artifact
test_suites: [
"cts",
"vts10",
"general-tests",
],
v4_signature: true,
}