59029ad151
Bug: 220320098 Test: m Test: presubmit Test: flashed device, checked BCP and SSCP Change-Id: Ie1d2aac422f9ffe332f9622b168e908dee874c9e
103 lines
2.8 KiB
Plaintext
103 lines
2.8 KiB
Plaintext
// 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.
|
|
java_defaults {
|
|
name: "FrameworkMockingServicesTests-jni-defaults",
|
|
jni_libs: [
|
|
"libmockingservicestestjni",
|
|
],
|
|
}
|
|
|
|
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "frameworks_base_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["frameworks_base_license"],
|
|
}
|
|
|
|
android_test {
|
|
name: "FrameworksMockingServicesTests",
|
|
defaults: [
|
|
"FrameworkMockingServicesTests-jni-defaults",
|
|
"modules-utils-testable-device-config-defaults",
|
|
],
|
|
|
|
srcs: [
|
|
"src/**/*.java",
|
|
"src/**/*.kt",
|
|
],
|
|
|
|
static_libs: [
|
|
"androidx.test.core",
|
|
"androidx.test.runner",
|
|
"androidx.test.ext.truth",
|
|
"frameworks-base-testutils",
|
|
"hamcrest-library",
|
|
"kotlin-test",
|
|
"mockingservicestests-utils-mockito",
|
|
"mockito-target-extended-minus-junit4",
|
|
"platform-test-annotations",
|
|
"service-blobstore",
|
|
"service-jobscheduler",
|
|
"service-permission.impl",
|
|
"service-sdksandbox.impl",
|
|
"services.companion",
|
|
"services.core",
|
|
"services.devicepolicy",
|
|
"services.net",
|
|
"services.usage",
|
|
"servicestests-core-utils",
|
|
"servicestests-utils-mockito-extended",
|
|
"testables",
|
|
"truth-prebuilt",
|
|
// TODO: remove once Android migrates to JUnit 4.12, which provides assertThrows
|
|
"testng",
|
|
"compatibility-device-util-axt",
|
|
],
|
|
|
|
libs: [
|
|
"android.test.mock",
|
|
"android.test.base",
|
|
"android.test.runner",
|
|
"servicestests-core-utils",
|
|
],
|
|
|
|
jni_libs: [
|
|
"libpsi",
|
|
],
|
|
|
|
certificate: "platform",
|
|
platform_apis: true,
|
|
test_suites: ["device-tests"],
|
|
|
|
optimize: {
|
|
enabled: false,
|
|
},
|
|
}
|
|
|
|
java_library {
|
|
name: "mockingservicestests-utils-mockito",
|
|
srcs: [
|
|
"utils-mockito/**/*.kt",
|
|
],
|
|
static_libs: [
|
|
"junit",
|
|
"mockito-target-extended-minus-junit4",
|
|
],
|
|
libs: [
|
|
"android.test.runner",
|
|
],
|
|
}
|