Files
app_Settings/tests/screenshot/Android.bp
Joshua Mccloskey 114fabf79d Adding back screenshot test to Settings.
Test: atest SettingsScreenshotTests
Fixes: 307356833
Change-Id: I80b32cd40155d56e38d41d5f6d52e4c5d5ef715c
2023-11-06 19:40:58 +00:00

71 lines
2.1 KiB
Plaintext

//
// Copyright (C) 2023 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.
android_app {
name: "ScreenshotTestStub",
defaults: [
"SettingsLibDefaults",
],
platform_apis: true,
certificate: "platform",
privileged: true,
use_resource_processor: true,
static_libs: [
"Settings-core",
"androidx.fragment_fragment-testing",
"androidx.fragment_fragment",
"androidx.test.runner",
"androidx.test.core",
],
uses_libs: ["org.apache.http.legacy"],
aaptflags: ["--extra-packages com.android.settings"],
manifest: "AndroidManifest.xml",
}
android_test {
name: "SettingsScreenshotTests",
platform_apis: true,
certificate: "platform",
test_suites: ["device-tests"],
srcs: [
"src/**/*.kt",
],
static_libs: [
"androidx.fragment_fragment-testing",
"androidx.fragment_fragment",
"androidx.test.rules",
"androidx.test.ext.junit",
"platform-screenshot-diff-core",
"Settings-testutils2",
"androidx.test.core",
"androidx.test.espresso.core",
"kotlinx-coroutines-android",
"androidx.lifecycle_lifecycle-runtime-testing",
"kotlinx_coroutines_test",
"Settings-core",
"androidx.test.runner",
],
uses_libs: ["org.apache.http.legacy"],
compile_multilib: "both",
manifest: "AndroidManifest.xml",
test_config: "AndroidTest.xml",
use_embedded_native_libs: false,
asset_dirs: ["assets"],
instrumentation_for: "ScreenshotTestStub",
data: [":ScreenshotTestStub"],
}