blob: ec8257f016654d9da9617563b9d15cdcf918e0c0 [file] [log] [blame]
Xiao Ma53ed1ac2019-06-03 15:48:39 +09001//
2// Copyright (C) 2019 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
17android_test {
18 name: "NetworkStackIntegrationTests",
19 certificate: "networkstack",
20 srcs: ["src/**/*.java"],
21 test_suites: ["device-tests"],
22 static_libs: [
23 "androidx.annotation_annotation",
24 "androidx.test.rules",
25 "mockito-target-extended-minus-junit4",
26 "NetworkStackBase",
27 "testables",
28 ],
29 libs: [
30 "android.test.runner",
31 "android.test.base",
32 "android.test.mock",
33 ],
34 defaults: ["libnetworkstackutilsjni_deps"],
35 jni_libs: [
36 // For mockito extended
37 "libdexmakerjvmtiagent",
38 "libstaticjvmtiagent",
39 // For NetworkStackUtils included in NetworkStackBase
40 "libnetworkstackutilsjni",
41 ],
42}