Colin Cross | 35be424 | 2018-11-20 09:46:47 -0800 | [diff] [blame] | 1 | // 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 | |
| 15 | android_test { |
| 16 | name: "FrameworksMockingServicesTests", |
| 17 | |
| 18 | srcs: ["src/**/*.java"], |
| 19 | |
| 20 | static_libs: [ |
| 21 | "services.core", |
| 22 | "services.net", |
Anton Hansson | 97369f8 | 2019-11-22 11:40:08 +0000 | [diff] [blame] | 23 | "service-jobscheduler", |
Hai Zhang | 82a6227 | 2020-01-14 21:56:34 -0800 | [diff] [blame] | 24 | "service-permission", |
Sudheer Shanka | ae53d11 | 2020-01-31 14:20:53 -0800 | [diff] [blame] | 25 | "service-blobstore", |
Colin Cross | 35be424 | 2018-11-20 09:46:47 -0800 | [diff] [blame] | 26 | "androidx.test.runner", |
Soonil Nagarkar | 77a9227 | 2020-02-11 14:04:39 -0800 | [diff] [blame^] | 27 | "androidx.test.ext.truth", |
Colin Cross | 35be424 | 2018-11-20 09:46:47 -0800 | [diff] [blame] | 28 | "mockito-target-extended-minus-junit4", |
| 29 | "platform-test-annotations", |
Linus Tufvesson | 9d50175 | 2019-02-12 11:33:22 +0000 | [diff] [blame] | 30 | "truth-prebuilt", |
wilsonshih | 999ec10 | 2019-05-17 18:47:50 +0800 | [diff] [blame] | 31 | "testables", |
Colin Cross | 35be424 | 2018-11-20 09:46:47 -0800 | [diff] [blame] | 32 | ], |
| 33 | |
| 34 | libs: [ |
| 35 | "android.test.mock", |
| 36 | "android.test.base", |
| 37 | "android.test.runner", |
| 38 | ], |
| 39 | |
| 40 | jni_libs: [ |
| 41 | "libdexmakerjvmtiagent", |
Tim Murray | 676d42d | 2019-02-13 20:47:46 -0800 | [diff] [blame] | 42 | "libpsi", |
Colin Cross | 35be424 | 2018-11-20 09:46:47 -0800 | [diff] [blame] | 43 | "libstaticjvmtiagent", |
| 44 | ], |
| 45 | |
| 46 | certificate: "platform", |
| 47 | platform_apis: true, |
| 48 | test_suites: ["device-tests"], |
| 49 | |
| 50 | optimize: { |
| 51 | enabled: false, |
| 52 | }, |
| 53 | } |