| // 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 { |
| default_team: "trendy_team_fwk_telephony", |
| // See: http://go/android-license-faq |
| default_applicable_licenses: ["Android-Apache-2.0"], |
| } |
| |
| java_defaults { |
| name: "CellBroadcastTestCommon", |
| libs: [ |
| "android.test.runner.stubs.system", |
| "telephony-common", |
| "android.test.base.stubs.system", |
| "android.test.mock.stubs.system", |
| ], |
| static_libs: [ |
| "androidx.test.rules", |
| "androidx.test.espresso.core", |
| "androidx.test.uiautomator_uiautomator", |
| "mockito-target-minus-junit4", |
| "truth", |
| "cellbroadcastreceiver_flags_lib", |
| ], |
| // Include all test java files. |
| srcs: [":cellbroadcastreceiver-shared-srcs-test"], |
| platform_apis: true, |
| min_sdk_version: "30", |
| } |
| |
| // 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"], |
| test_suites: [ |
| "device-tests", |
| "mts-cellbroadcast", |
| ], |
| manifest: "AndroidManifest_OemTesting.xml", |
| test_config: "AndroidTest_Oem.xml", |
| 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", |
| "SettingsLibTopIntroPreference", |
| "modules-utils-build_system", |
| "cellbroadcast-java-proto-lite", |
| "CellBroadcastCommon", |
| "cellbroadcastreceiver_flags_lib", |
| ], |
| 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", |
| ], |
| manifest: "AndroidManifest.xml", |
| test_config: "AndroidTest.xml", |
| min_sdk_version: "30", |
| } |
| |
| android_test { |
| name: "CellBroadcastReceiverGoogleUnitTests", |
| certificate: "networkstack", |
| defaults: ["CellBroadcastTestCommon"], |
| instrumentation_for: "CellBroadcastApp", |
| test_suites: [ |
| "general-tests", |
| ], |
| manifest: "AndroidManifest.xml", |
| target_sdk_version: "10000", |
| test_config: "AndroidTest_PixelExperience.xml", |
| } |
| |
| android_test { |
| name: "CellBroadcastReceiverPlatformUnitTests", |
| certificate: "platform", |
| defaults: ["CellBroadcastTestCommon"], |
| instrumentation_for: "CellBroadcastAppPlatform", |
| test_suites: ["device-tests"], |
| data: [ |
| ":CellBroadcastReceiverUnitTests", |
| ], |
| } |
| |
| // used to share src with unit test app |
| filegroup { |
| name: "cellbroadcastreceiver-shared-srcs-test", |
| srcs: [ |
| "src/**/*.java", |
| ], |
| } |