blob: 0b75039cf69f19d0124531357c5c05bc6b1faf44 [file] [log] [blame]
Sasha Smundak89414e12019-03-10 19:48:23 -07001// Copyright (C) 2019 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// PackageWatchdogTest
16android_test {
17 name: "PackageWatchdogTest",
18 srcs: ["src/**/*.java"],
19 static_libs: [
20 "junit",
Remi NGUYEN VAN6a135102019-05-29 18:30:27 +090021 "mockito-target-extended-minus-junit4",
Sasha Smundak89414e12019-03-10 19:48:23 -070022 "frameworks-base-testutils",
23 "androidx.test.rules",
24 "services.core",
Remi NGUYEN VAN6a135102019-05-29 18:30:27 +090025 "services.net",
JW Wang73490db2019-09-09 12:05:06 +080026 "truth-prebuilt",
Sasha Smundak89414e12019-03-10 19:48:23 -070027 ],
28 libs: ["android.test.runner"],
Remi NGUYEN VAN6a135102019-05-29 18:30:27 +090029 jni_libs: [
30 // mockito-target-extended dependencies
31 "libdexmakerjvmtiagent",
32 "libstaticjvmtiagent",
33 ],
Sasha Smundak89414e12019-03-10 19:48:23 -070034 platform_apis: true,
35 test_suites: ["device-tests"],
36}