blob: e5cc8b1f7c813f7d9809c48cd28b7f2d7c3a0a0e [file] [log] [blame]
Aaron Huangf73ff8c2019-12-06 18:12:24 +08001// 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
Aaron Huang57a94962020-01-03 20:35:55 +080015// 1. The "net-utils-framework-common" library is also compiled into the framework and placed on the
16// boot classpath. It uses jarjar rules so that anything outside the framework can use this
17// library directly.
18// 2. The "net-utils-services-common" library is for use by modules and frameworks/base/services.
19// It does not need to be jarjared because it is not placed on the bootclasspath.
Lorenzo Colittie14bd342020-01-14 14:47:16 +090020// 3. The "net-utils-telephony-common-srcs" filegroup is for use specifically by telephony, which
21// places many of its classes, even non-API service classes, on the boot classpath. Any file that
22// is added to this filegroup *must* have a corresponding jarjar rule in the telephony jarjar
23// rules file. Otherwise, it will end up on the boot classpath and other modules will not be able
24// to provide their own copy.
Aaron Huangf73ff8c2019-12-06 18:12:24 +080025
Adrian Roos0607dd92020-03-27 00:30:41 +010026// Note: all filegroups here must have the right path attribute because otherwise, if they are
27// included in the bootclasspath, they could incorrectly be included in the SDK documentation even
28// though they are not in the current.txt files.
29
Chalard Jean48c6c7d2020-06-25 23:39:15 +090030java_library {
31 name: "net-utils-device-common",
32 srcs: [
33 "device/**/*.java",
34 // This library is used by system modules, for which the system health impact of Kotlin
35 // has not yet been evaluated.
36 // "src_devicecommon/**/*.kt",
37 ":framework-annotations",
38 ],
39 sdk_version: "system_current",
40 min_sdk_version: "29",
41 target_sdk_version: "30",
42 apex_available: [
43 "//apex_available:anyapex",
44 "//apex_available:platform",
45 ],
46 visibility: [
47 "//frameworks/base/packages/Tethering",
48 "//frameworks/opt/net/ike",
49 "//frameworks/opt/net/wifi/service",
50 "//frameworks/opt/net/telephony",
51 "//packages/modules/NetworkStack",
52 "//packages/modules/CaptivePortalLogin",
53 "//frameworks/libs/net/common/tests:__subpackages__",
54 ],
55 libs: [
56 "androidx.annotation_annotation",
57 ],
58}
59
60java_library {
61 // Consider using net-tests-utils instead if writing device code.
62 // That library has a lot more useful tools into it for users that
63 // work on Android and includes this lib.
64 name: "net-tests-utils-host-device-common",
65 srcs: [
66 "hostdevice/**/*.java",
67 "hostdevice/**/*.kt",
68 ],
69 host_supported: true,
70 visibility: [
71 "//frameworks/libs/net/common/tests:__subpackages__",
72 ],
73 static_libs: [
74 "kotlin-test"
75 ]
76}
77
78java_defaults {
79 name: "lib_mockito_extended",
80 static_libs: [
81 "mockito-target-extended-minus-junit4"
82 ],
83 jni_libs: [
84 "libdexmakerjvmtiagent",
85 "libstaticjvmtiagent",
86 ],
87}
88
89java_library {
90 name: "net-tests-utils",
91 srcs: [
92 "devicetests/**/*.java",
93 "devicetests/**/*.kt",
94 ],
95 defaults: ["lib_mockito_extended"],
96 libs: [
97 "androidx.annotation_annotation",
98 ],
99 static_libs: [
100 "androidx.test.ext.junit",
Remi NGUYEN VAN7995b432020-08-14 12:49:56 +0900101 "libnanohttpd",
Chalard Jean48c6c7d2020-06-25 23:39:15 +0900102 "net-tests-utils-host-device-common",
103 "net-utils-device-common",
104 ],
105}
106
Aaron Huangf73ff8c2019-12-06 18:12:24 +0800107filegroup {
108 name: "net-utils-framework-common-srcs",
Chalard Jean48c6c7d2020-06-25 23:39:15 +0900109 srcs: ["framework/**/*.java"],
110 path: "framework",
Aaron Huangf73ff8c2019-12-06 18:12:24 +0800111 visibility: ["//frameworks/base"],
112}
113
114java_library {
115 name: "net-utils-framework-common",
Remi NGUYEN VANce241a32020-01-14 21:42:09 +0900116 srcs: [
117 ":net-utils-framework-common-srcs",
118 // TODO: avoid including all framework annotations as they end up in library users jars
119 // and need jarjaring
120 ":framework-annotations",
121 ],
122 sdk_version: "system_current",
Aaron Huangf73ff8c2019-12-06 18:12:24 +0800123 jarjar_rules: "jarjar-rules-shared.txt",
124 visibility: [
Luke Huangfd5479e2020-06-20 11:38:17 +0800125 "//cts/tests/tests/net",
Aaron Huangf73ff8c2019-12-06 18:12:24 +0800126 "//frameworks/base/packages/Tethering",
Aaron Huangf73ff8c2019-12-06 18:12:24 +0800127 "//frameworks/opt/net/ike",
128 "//frameworks/opt/telephony",
Chalard Jean19789192020-10-01 12:45:31 +0900129 "//frameworks/base/wifi:__subpackages__",
Chalard Jean48c6c7d2020-06-25 23:39:15 +0900130 "//packages/modules/NetworkStack:__subpackages__",
Aaron Huangf73ff8c2019-12-06 18:12:24 +0800131 "//packages/modules/CaptivePortalLogin",
Lorenzo Colitti5d9f8ed2020-01-21 15:31:06 +0900132 "//frameworks/libs/net/common/tests:__subpackages__",
Aaron Huangf73ff8c2019-12-06 18:12:24 +0800133 ]
134}
Aaron Huang57a94962020-01-03 20:35:55 +0800135
136java_library {
137 name: "net-utils-services-common",
Remi NGUYEN VANce241a32020-01-14 21:42:09 +0900138 srcs: [
Chalard Jean48c6c7d2020-06-25 23:39:15 +0900139 "device/android/net/NetworkFactory.java",
Remi NGUYEN VANce241a32020-01-14 21:42:09 +0900140 ":framework-annotations",
141 ],
142 sdk_version: "system_current",
Aaron Huang57a94962020-01-03 20:35:55 +0800143 visibility: [
Remi NGUYEN VAN376f8d42020-01-15 18:26:29 +0900144 "//frameworks/base/services/net",
Aaron Huang57a94962020-01-03 20:35:55 +0800145 ],
146}
Lorenzo Colittie14bd342020-01-14 14:47:16 +0900147
148// Use a filegroup and not a library for telephony sources, as framework-annotations cannot be
149// included either (some annotations would be duplicated on the bootclasspath).
150filegroup {
151 name: "net-utils-telephony-common-srcs",
152 srcs: [
153 // Any class here *must* have a corresponding jarjar rule in the telephony build rules.
Chalard Jean48c6c7d2020-06-25 23:39:15 +0900154 "device/android/net/NetworkFactory.java",
Lorenzo Colittie14bd342020-01-14 14:47:16 +0900155 ],
Chalard Jean48c6c7d2020-06-25 23:39:15 +0900156 path: "device",
Lorenzo Colittie14bd342020-01-14 14:47:16 +0900157 visibility: [
158 "//frameworks/opt/telephony",
159 ],
160}
Roshan Pius864bdec2020-01-16 09:19:11 -0800161
162// Use a filegroup and not a library for wifi sources, as this needs corresponding jar-jar
163// rules on the wifi side.
164// Any class here *must* have a corresponding jarjar rule in the wifi build rules.
165filegroup {
166 name: "net-utils-framework-wifi-common-srcs",
167 srcs: [
Chalard Jean48c6c7d2020-06-25 23:39:15 +0900168 "framework/android/net/util/nsd/DnsSdTxtRecord.java",
169 "framework/android/net/util/MacAddressUtils.java",
170 "framework/com/android/net/module/util/**/*.java",
Roshan Pius864bdec2020-01-16 09:19:11 -0800171 ],
Chalard Jean48c6c7d2020-06-25 23:39:15 +0900172 path: "framework",
Roshan Pius864bdec2020-01-16 09:19:11 -0800173 visibility: [
174 "//frameworks/base",
175 ],
176}
177
178// Use a filegroup and not a library for wifi sources, as this needs corresponding jar-jar
179// rules on the wifi side.
180// Any class here *must* have a corresponding jarjar rule in the wifi build rules.
181filegroup {
182 name: "net-utils-wifi-service-common-srcs",
183 srcs: [
Chalard Jean48c6c7d2020-06-25 23:39:15 +0900184 "device/android/net/NetworkFactory.java",
185 "framework/android/net/util/NetUtils.java",
Roshan Pius864bdec2020-01-16 09:19:11 -0800186 ],
187 visibility: [
188 "//frameworks/opt/net/wifi/service",
189 ],
190}