blob: ff34ebd8aa9de8c4be4899e21caee016f6c0160c [file] [log] [blame]
Colin Cross35be4242018-11-20 09:46:47 -08001// Copyright (C) 2018 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15android_test {
16 name: "FrameworksMockingServicesTests",
17
18 srcs: ["src/**/*.java"],
19
20 static_libs: [
21 "services.core",
22 "services.net",
Anton Hansson97369f82019-11-22 11:40:08 +000023 "service-jobscheduler",
Hai Zhang82a62272020-01-14 21:56:34 -080024 "service-permission",
Sudheer Shankaae53d112020-01-31 14:20:53 -080025 "service-blobstore",
Colin Cross35be4242018-11-20 09:46:47 -080026 "androidx.test.runner",
Soonil Nagarkar77a92272020-02-11 14:04:39 -080027 "androidx.test.ext.truth",
Colin Cross35be4242018-11-20 09:46:47 -080028 "mockito-target-extended-minus-junit4",
29 "platform-test-annotations",
Linus Tufvesson9d501752019-02-12 11:33:22 +000030 "truth-prebuilt",
wilsonshih999ec102019-05-17 18:47:50 +080031 "testables",
Colin Cross35be4242018-11-20 09:46:47 -080032 ],
33
34 libs: [
35 "android.test.mock",
36 "android.test.base",
37 "android.test.runner",
38 ],
39
40 jni_libs: [
41 "libdexmakerjvmtiagent",
Tim Murray676d42d2019-02-13 20:47:46 -080042 "libpsi",
Colin Cross35be4242018-11-20 09:46:47 -080043 "libstaticjvmtiagent",
44 ],
45
46 certificate: "platform",
47 platform_apis: true,
48 test_suites: ["device-tests"],
49
50 optimize: {
51 enabled: false,
52 },
53}