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.
104 lines
3.3 KiB
104 lines
3.3 KiB
// Copyright 2016, 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 {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "packages_apps_CellBroadcastReceiver_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: [
|
|
"packages_apps_CellBroadcastReceiver_license",
|
|
],
|
|
}
|
|
|
|
java_defaults {
|
|
name: "CellBroadcastTestCommon",
|
|
libs: [
|
|
"android.test.runner",
|
|
"telephony-common",
|
|
"android.test.base",
|
|
"android.test.mock",
|
|
],
|
|
static_libs: [
|
|
"androidx.test.rules",
|
|
"androidx.test.espresso.core",
|
|
"mockito-target-minus-junit4",
|
|
"truth-prebuilt",
|
|
"ub-uiautomator",
|
|
],
|
|
// Include all test java files.
|
|
srcs: [":cellbroadcastreceiver-shared-srcs-test"],
|
|
platform_apis: true,
|
|
}
|
|
|
|
// in order to have our tests run on OEM devices, the test apk here includes
|
|
// module code within it and filters out tests which require UI.
|
|
// For the full test apk which does not run on OEM devices, see CellBroadcastReceiverUnitTests
|
|
android_test {
|
|
name: "CellBroadcastReceiverOemUnitTests",
|
|
defaults: ["CellBroadcastTestCommon"],
|
|
srcs: [":cellbroadcastreceiver-sources"],
|
|
test_suites: ["device-tests", "mts"],
|
|
manifest: "AndroidManifest_OemTesting.xml",
|
|
test_config: "AndroidTest_Oem.xml",
|
|
resource_dirs: [
|
|
"main-res",
|
|
],
|
|
aaptflags: [
|
|
"--custom-package com.android.cellbroadcastreceiver"
|
|
],
|
|
static_libs: [
|
|
"androidx.legacy_legacy-support-v4",
|
|
"androidx.legacy_legacy-support-v13",
|
|
"androidx.recyclerview_recyclerview",
|
|
"androidx.preference_preference",
|
|
"androidx.appcompat_appcompat",
|
|
"androidx.legacy_legacy-preference-v14",
|
|
"SettingsLibSettingsTheme",
|
|
"SettingsLibCollapsingToolbarBaseActivity",
|
|
"SettingsLibMainSwitchPreference",
|
|
"modules-utils-build_system",
|
|
],
|
|
min_sdk_version: "30",
|
|
}
|
|
|
|
|
|
// used to run mts coverage test
|
|
android_test {
|
|
name: "CellBroadcastReceiverUnitTests",
|
|
certificate: "networkstack",
|
|
defaults: ["CellBroadcastTestCommon"],
|
|
instrumentation_for: "CellBroadcastApp",
|
|
test_suites: ["device-tests", "mts"],
|
|
manifest: "AndroidManifest.xml",
|
|
test_config: "AndroidTest.xml",
|
|
}
|
|
|
|
android_test {
|
|
name: "CellBroadcastReceiverPlatformUnitTests",
|
|
certificate: "platform",
|
|
defaults: ["CellBroadcastTestCommon"],
|
|
instrumentation_for: "CellBroadcastAppPlatform",
|
|
test_suites: ["device-tests"],
|
|
}
|
|
|
|
// used to share src with unit test app
|
|
filegroup {
|
|
name: "cellbroadcastreceiver-shared-srcs-test",
|
|
srcs: [
|
|
"src/**/*.java",
|
|
],
|
|
}
|