blob: deb1c5ad2eeaad97d9e825dafce4d882aa933416 [file] [log] [blame]
Remi NGUYEN VAN66ea68e2021-01-15 16:22:36 +09001//
2// Copyright (C) 2020 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
Bob Badour727b6722021-02-12 17:07:05 -080017package {
Aditya Choudhary01b5ede2024-01-31 11:08:57 +000018 default_team: "trendy_team_fwk_core_networking",
Bob Badour727b6722021-02-12 17:07:05 -080019 // See: http://go/android-license-faq
Baligh Uddin2afd0982021-05-24 03:50:01 +000020 default_applicable_licenses: ["Android-Apache-2.0"],
Bob Badour727b6722021-02-12 17:07:05 -080021}
22
Remi NGUYEN VAN66ea68e2021-01-15 16:22:36 +090023filegroup {
Remi NGUYEN VANad43ca62021-02-15 20:16:28 +090024 name: "framework-connectivity-internal-sources",
Remi NGUYEN VAN66ea68e2021-01-15 16:22:36 +090025 srcs: [
26 "src/**/*.java",
27 "src/**/*.aidl",
28 ],
29 path: "src",
30 visibility: [
Remi NGUYEN VANad43ca62021-02-15 20:16:28 +090031 "//visibility:private",
32 ],
33}
34
35filegroup {
36 name: "framework-connectivity-aidl-export-sources",
37 srcs: [
38 "aidl-export/**/*.aidl",
39 ],
40 path: "aidl-export",
41 visibility: [
42 "//visibility:private",
43 ],
44}
45
46// TODO: use a java_library in the bootclasspath instead
47filegroup {
48 name: "framework-connectivity-sources",
Anton Hansson57f3d692023-03-15 10:30:10 +000049 defaults: ["framework-sources-module-defaults"],
Remi NGUYEN VANad43ca62021-02-15 20:16:28 +090050 srcs: [
51 ":framework-connectivity-internal-sources",
52 ":framework-connectivity-aidl-export-sources",
53 ],
Anton Hansson57f3d692023-03-15 10:30:10 +000054 visibility: ["//packages/modules/Connectivity:__subpackages__"],
Bob Badour727b6722021-02-12 17:07:05 -080055}
Remi NGUYEN VAN11b5a5c2021-01-28 13:37:03 +090056
Remi NGUYEN VAN6a20eed2022-01-31 11:21:08 +090057java_defaults {
58 name: "framework-connectivity-defaults",
59 defaults: ["framework-module-defaults"],
Remi NGUYEN VAN71d64e72021-03-24 22:59:50 +090060 sdk_version: "module_current",
61 min_sdk_version: "30",
Remi NGUYEN VAN11b5a5c2021-01-28 13:37:03 +090062 srcs: [
63 ":framework-connectivity-sources",
Remi NGUYEN VAN71d64e72021-03-24 22:59:50 +090064 ":net-utils-framework-common-srcs",
Junyu Laieb6f4be2022-01-17 11:52:57 +000065 ":framework-connectivity-api-shared-srcs",
Remi NGUYEN VAN11b5a5c2021-01-28 13:37:03 +090066 ],
67 aidl: {
Siim Sammulcd4c8222021-12-13 15:52:07 +000068 generate_get_transaction_name: true,
Remi NGUYEN VAN11b5a5c2021-01-28 13:37:03 +090069 include_dirs: [
70 // Include directories for parcelables that are part of the stable API, and need a
71 // one-line "parcelable X" .aidl declaration to be used in AIDL interfaces.
72 // TODO(b/180293679): remove these dependencies as they should not be necessary once
73 // the module builds against API (the parcelable declarations exist in framework.aidl)
74 "frameworks/base/core/java", // For framework parcelables
75 "frameworks/native/aidl/binder", // For PersistableBundle.aidl
76 ],
77 },
Remi NGUYEN VAN6a20eed2022-01-31 11:21:08 +090078 stub_only_libs: [
paulhu537f7202022-02-08 21:25:28 +080079 "framework-connectivity-t.stubs.module_lib",
Remi NGUYEN VAN6a20eed2022-01-31 11:21:08 +090080 ],
Remi NGUYEN VAN71d64e72021-03-24 22:59:50 +090081 impl_only_libs: [
Igor Chernyshev9dac6602022-12-13 19:28:32 -080082 // TODO: figure out why just using "framework-tethering" uses the stubs, even though both
83 // framework-connectivity and framework-tethering are in the same APEX.
Mark Whitee4d44632023-07-25 23:02:43 +000084 "framework-location.stubs.module_lib",
Igor Chernyshev9dac6602022-12-13 19:28:32 -080085 "framework-tethering.impl",
Remi NGUYEN VAN71d64e72021-03-24 22:59:50 +090086 "framework-wifi.stubs.module_lib",
Remi NGUYEN VAN71d64e72021-03-24 22:59:50 +090087 ],
Chalard Jeandece0d82021-11-15 18:17:33 +090088 static_libs: [
Ken Chen7da858c2023-11-17 12:20:53 +080089 // Not using the latest stable version because all functions in the latest version of
90 // mdns_aidl_interface are deprecated.
91 "mdns_aidl_interface-V1-java",
Xiao Ma0a171c02022-01-23 16:14:51 +000092 "modules-utils-backgroundthread",
Chalard Jeandece0d82021-11-15 18:17:33 +090093 "modules-utils-build",
Remi NGUYEN VAN6a20eed2022-01-31 11:21:08 +090094 "modules-utils-preconditions",
Vinh Tran6d8c1d72022-06-08 01:25:14 -040095 "framework-connectivity-javastream-protos",
Chalard Jeandece0d82021-11-15 18:17:33 +090096 ],
Junyu Lai29b7b632023-08-23 17:35:17 +080097 impl_only_static_libs: [
Junyu Lai626045a2023-08-28 18:49:44 +080098 "net-utils-device-common-bpf",
Yang Sun3aa62e62024-03-12 21:23:19 +080099 "net-utils-device-common-struct-base",
Junyu Lai29b7b632023-08-23 17:35:17 +0800100 ],
Remi NGUYEN VAN11b5a5c2021-01-28 13:37:03 +0900101 libs: [
Jooyung Hanc8375542022-06-24 19:16:40 +0900102 "androidx.annotation_annotation",
Taras Antoshchuk30d41e52021-08-02 18:06:35 +0200103 "app-compat-annotations",
paulhu537f7202022-02-08 21:25:28 +0800104 "framework-connectivity-t.stubs.module_lib",
Remi NGUYEN VAN11b5a5c2021-01-28 13:37:03 +0900105 "unsupportedappusage",
106 ],
Remi NGUYEN VAN6a20eed2022-01-31 11:21:08 +0900107 apex_available: [
108 "com.android.tethering",
109 ],
Remi NGUYEN VAN6a20eed2022-01-31 11:21:08 +0900110}
111
112java_library {
113 name: "framework-connectivity-pre-jarjar",
Motomu Utsumi73e2e872023-04-14 19:22:42 +0900114 defaults: [
115 "framework-connectivity-defaults",
Patrick Rohr740b1d42023-05-11 13:28:54 -0700116 ],
117 static_libs: [
Stefano Duo2cf46932023-07-17 14:52:16 +0000118 "httpclient_api",
119 "httpclient_impl",
Junyu Lai29b7b632023-08-23 17:35:17 +0800120 // Framework-connectivity-pre-jarjar is identical to framework-connectivity
121 // implementation, but without the jarjar rules. However, framework-connectivity
122 // is not based on framework-connectivity-pre-jarjar, it's rebuilt from source
123 // to generate the SDK stubs.
124 // Even if the library is included in "impl_only_static_libs" of defaults. This is still
125 // needed because java_library which doesn't understand "impl_only_static_libs".
Junyu Lai626045a2023-08-28 18:49:44 +0800126 "net-utils-device-common-bpf",
Yang Sun3aa62e62024-03-12 21:23:19 +0800127 "net-utils-device-common-struct-base",
Patrick Rohr740b1d42023-05-11 13:28:54 -0700128 ],
Remi NGUYEN VAN6a20eed2022-01-31 11:21:08 +0900129 libs: [
130 // This cannot be in the defaults clause above because if it were, it would be used
131 // to generate the connectivity stubs. That would create a circular dependency
Igor Chernyshev9dac6602022-12-13 19:28:32 -0800132 // because the tethering impl depend on the connectivity stubs (e.g.,
Remi NGUYEN VAN6a20eed2022-01-31 11:21:08 +0900133 // TetheringRequest depends on LinkAddress).
Mark Whitee4d44632023-07-25 23:02:43 +0000134 "framework-location.stubs.module_lib",
Igor Chernyshev9dac6602022-12-13 19:28:32 -0800135 "framework-tethering.impl",
Remi NGUYEN VANe55a88d2022-04-20 15:59:16 +0900136 "framework-wifi.stubs.module_lib",
Remi NGUYEN VAN6a20eed2022-01-31 11:21:08 +0900137 ],
Cole Fausta52ecf02023-12-20 11:57:07 -0800138 visibility: ["//packages/modules/Connectivity:__subpackages__"],
Remi NGUYEN VAN6a20eed2022-01-31 11:21:08 +0900139}
140
Patrick Rohr740b1d42023-05-11 13:28:54 -0700141java_defaults {
142 name: "CronetJavaDefaults",
Stefano Duo2cf46932023-07-17 14:52:16 +0000143 srcs: [":httpclient_api_sources"],
Patrick Rohr740b1d42023-05-11 13:28:54 -0700144 libs: [
145 "androidx.annotation_annotation",
146 ],
147 impl_only_static_libs: [
Stefano Duo2cf46932023-07-17 14:52:16 +0000148 "httpclient_impl",
Patrick Rohr740b1d42023-05-11 13:28:54 -0700149 ],
150}
151
Remi NGUYEN VAN6a20eed2022-01-31 11:21:08 +0900152java_sdk_library {
153 name: "framework-connectivity",
Motomu Utsumi73e2e872023-04-14 19:22:42 +0900154 defaults: [
155 "framework-connectivity-defaults",
156 "CronetJavaDefaults",
157 ],
Remi NGUYEN VAN6a20eed2022-01-31 11:21:08 +0900158 installable: true,
Remi NGUYEN VANe55a88d2022-04-20 15:59:16 +0900159 jarjar_rules: ":framework-connectivity-jarjar-rules",
Remi NGUYEN VANc58c9932021-03-19 10:13:40 +0000160 permitted_packages: ["android.net"],
Remi NGUYEN VAN71d64e72021-03-24 22:59:50 +0900161 impl_library_visibility: [
162 "//packages/modules/Connectivity/Tethering/apex",
163 // In preparation for future move
164 "//packages/modules/Connectivity/apex",
Remi NGUYEN VAN6a20eed2022-01-31 11:21:08 +0900165 "//packages/modules/Connectivity/framework-t",
Remi NGUYEN VAN71d64e72021-03-24 22:59:50 +0900166 "//packages/modules/Connectivity/service",
paulhu802ab972021-12-14 01:30:22 +0000167 "//packages/modules/Connectivity/service-t",
Remi NGUYEN VAN71d64e72021-03-24 22:59:50 +0900168 "//frameworks/base",
Remi NGUYEN VAN173f8b12021-03-16 01:31:07 +0000169
170 // Tests using hidden APIs
Chiachang Wang32708712021-04-14 11:48:19 +0800171 "//cts/tests/netlegacy22.api",
Lorenzo Colittieb8d8552022-02-01 13:51:42 +0900172 "//cts/tests/tests/app.usage", // NetworkUsageStatsTest
Remi NGUYEN VAN173f8b12021-03-16 01:31:07 +0000173 "//external/sl4a:__subpackages__",
Remi NGUYEN VAN85a4e072022-02-02 20:06:56 +0900174 "//frameworks/base/core/tests/bandwidthtests",
175 "//frameworks/base/core/tests/benchmarks",
176 "//frameworks/base/core/tests/utillib",
Chiachang Wanga5d98752024-02-28 07:50:15 +0000177 "//frameworks/base/services/tests/VpnTests",
Aaron Huang720ad7c2022-01-26 00:43:10 +0800178 "//frameworks/base/tests/vcn",
Xiao Ma0a171c02022-01-23 16:14:51 +0000179 "//frameworks/opt/net/ethernet/tests:__subpackages__",
Remi NGUYEN VAN173f8b12021-03-16 01:31:07 +0000180 "//frameworks/opt/telephony/tests/telephonytests",
Chiachang Wang426a6de2021-04-13 11:15:36 +0800181 "//packages/modules/CaptivePortalLogin/tests",
Motomu Utsumic4800392023-09-11 11:48:36 +0900182 "//packages/modules/Connectivity/staticlibs/testutils",
183 "//packages/modules/Connectivity/staticlibs/tests:__subpackages__",
Motomu Utsumi73e2e872023-04-14 19:22:42 +0900184 "//packages/modules/Connectivity/Cronet/tests:__subpackages__",
Remi NGUYEN VAN173f8b12021-03-16 01:31:07 +0000185 "//packages/modules/Connectivity/Tethering/tests:__subpackages__",
186 "//packages/modules/Connectivity/tests:__subpackages__",
Handa Wang806f5a12023-12-04 12:53:39 +0800187 "//packages/modules/Connectivity/thread/tests:__subpackages__",
Aaron Huang720ad7c2022-01-26 00:43:10 +0800188 "//packages/modules/IPsec/tests/iketests",
Remi NGUYEN VAN173f8b12021-03-16 01:31:07 +0000189 "//packages/modules/NetworkStack/tests:__subpackages__",
Chiachang Wange9d848e2021-03-31 16:11:37 +0800190 "//packages/modules/Wifi/service/tests/wifitests",
Remi NGUYEN VAN71d64e72021-03-24 22:59:50 +0900191 ],
Cole Fausta52ecf02023-12-20 11:57:07 -0800192 lint: {
193 baseline_filename: "lint-baseline.xml",
194 },
Motomu Utsumi52f294c2024-02-15 15:21:39 +0900195 aconfig_declarations: [
196 "com.android.net.flags-aconfig",
197 ],
Remi NGUYEN VANc58c9932021-03-19 10:13:40 +0000198}
199
Taras Antoshchuk30d41e52021-08-02 18:06:35 +0200200platform_compat_config {
201 name: "connectivity-platform-compat-config",
202 src: ":framework-connectivity",
203}
204
Remi NGUYEN VANdeed4cb2021-04-02 06:38:46 +0000205cc_library_shared {
206 name: "libframework-connectivity-jni",
207 min_sdk_version: "30",
Remi NGUYEN VANc58c9932021-03-19 10:13:40 +0000208 cflags: [
209 "-Wall",
210 "-Werror",
211 "-Wno-unused-parameter",
Remi NGUYEN VANb36fb992021-03-23 14:45:58 +0000212 // Don't warn about S API usage even with
213 // min_sdk 30: the library is only loaded
214 // on S+ devices
215 "-Wno-unguarded-availability",
Remi NGUYEN VANc58c9932021-03-19 10:13:40 +0000216 "-Wthread-safety",
217 ],
Remi NGUYEN VANdeed4cb2021-04-02 06:38:46 +0000218 srcs: [
219 "jni/android_net_NetworkUtils.cpp",
220 "jni/onload.cpp",
221 ],
Remi NGUYEN VANc58c9932021-03-19 10:13:40 +0000222 shared_libs: [
Remi NGUYEN VANdeed4cb2021-04-02 06:38:46 +0000223 "libandroid",
Remi NGUYEN VANc58c9932021-03-19 10:13:40 +0000224 "liblog",
225 "libnativehelper",
Remi NGUYEN VANc58c9932021-03-19 10:13:40 +0000226 ],
227 header_libs: [
Maciej Żenczykowski32b46a42023-03-11 01:19:40 +0000228 "bpf_headers",
Remi NGUYEN VANc58c9932021-03-19 10:13:40 +0000229 "dnsproxyd_protocol_headers",
230 ],
Remi NGUYEN VANdeed4cb2021-04-02 06:38:46 +0000231 stl: "none",
Remi NGUYEN VANc58c9932021-03-19 10:13:40 +0000232 apex_available: [
Remi NGUYEN VANc58c9932021-03-19 10:13:40 +0000233 "com.android.tethering",
Remi NGUYEN VAN3b52af92021-03-19 00:24:45 +0000234 ],
Remi NGUYEN VAN11b5a5c2021-01-28 13:37:03 +0900235}
Junyu Laieb6f4be2022-01-17 11:52:57 +0000236
Aaron Huangdac7e4b2022-02-14 21:38:14 +0800237filegroup {
Junyu Laieb6f4be2022-01-17 11:52:57 +0000238 name: "framework-connectivity-protos",
Junyu Laieb6f4be2022-01-17 11:52:57 +0000239 srcs: [
Aaron Huangdac7e4b2022-02-14 21:38:14 +0800240 "proto/**/*.proto",
Junyu Laieb6f4be2022-01-17 11:52:57 +0000241 ],
Aaron Huangdac7e4b2022-02-14 21:38:14 +0800242 visibility: ["//frameworks/base"],
243}
244
Vinh Tran6d8c1d72022-06-08 01:25:14 -0400245java_library {
Aaron Huangdac7e4b2022-02-14 21:38:14 +0800246 name: "framework-connectivity-javastream-protos",
Vinh Tran6d8c1d72022-06-08 01:25:14 -0400247 proto: {
248 type: "stream",
249 },
250 srcs: [":framework-connectivity-protos"],
251 installable: false,
252 sdk_version: "module_current",
253 min_sdk_version: "30",
254 apex_available: [
255 "com.android.tethering",
Junyu Laieb6f4be2022-01-17 11:52:57 +0000256 ],
Junyu Laieb6f4be2022-01-17 11:52:57 +0000257}
Remi NGUYEN VANe55a88d2022-04-20 15:59:16 +0900258
259java_genrule {
260 name: "framework-connectivity-jarjar-rules",
261 tool_files: [
262 ":connectivity-hiddenapi-files",
263 ":framework-connectivity-pre-jarjar{.jar}",
264 ":framework-connectivity-t-pre-jarjar{.jar}",
265 ":framework-connectivity.stubs.module_lib{.jar}",
266 ":framework-connectivity-t.stubs.module_lib{.jar}",
Motomu Utsumiba5dde82023-11-22 16:24:32 +0900267 ":framework-connectivity-module-api-stubs-including-flagged{.jar}",
Remi NGUYEN VANe55a88d2022-04-20 15:59:16 +0900268 "jarjar-excludes.txt",
269 ],
270 tools: [
271 "jarjar-rules-generator",
272 ],
273 out: ["framework_connectivity_jarjar_rules.txt"],
274 cmd: "$(location jarjar-rules-generator) " +
Remi NGUYEN VAN0bd90f12022-08-10 20:15:46 +0900275 "$(location :framework-connectivity-pre-jarjar{.jar}) " +
Remi NGUYEN VANe55a88d2022-04-20 15:59:16 +0900276 "$(location :framework-connectivity-t-pre-jarjar{.jar}) " +
277 "--prefix android.net.connectivity " +
278 "--apistubs $(location :framework-connectivity.stubs.module_lib{.jar}) " +
Remi NGUYEN VAN0bd90f12022-08-10 20:15:46 +0900279 "--apistubs $(location :framework-connectivity-t.stubs.module_lib{.jar}) " +
Motomu Utsumiba5dde82023-11-22 16:24:32 +0900280 "--apistubs $(location :framework-connectivity-module-api-stubs-including-flagged{.jar}) " +
Remi NGUYEN VAN0bd90f12022-08-10 20:15:46 +0900281 // Make a ":"-separated list. There will be an extra ":" but empty items are ignored.
282 "--unsupportedapi $$(printf ':%s' $(locations :connectivity-hiddenapi-files)) " +
Remi NGUYEN VANe55a88d2022-04-20 15:59:16 +0900283 "--excludes $(location jarjar-excludes.txt) " +
284 "--output $(out)",
285 visibility: [
286 "//packages/modules/Connectivity/framework:__subpackages__",
287 "//packages/modules/Connectivity/framework-t:__subpackages__",
288 "//packages/modules/Connectivity/service",
289 ],
290}
Igor Chernyshev9dac6602022-12-13 19:28:32 -0800291
Motomu Utsumiada9e982023-11-06 22:49:25 +0900292droidstubs {
Motomu Utsumiba5dde82023-11-22 16:24:32 +0900293 name: "framework-connectivity-module-api-stubs-including-flagged-droidstubs",
Motomu Utsumiada9e982023-11-06 22:49:25 +0900294 srcs: [
295 ":framework-connectivity-sources",
296 ":framework-connectivity-tiramisu-updatable-sources",
297 ":framework-nearby-java-sources",
298 ":framework-thread-sources",
299 ],
300 flags: [
Motomu Utsumi2f2aa212023-11-09 16:34:07 +0900301 "--show-for-stub-purposes-annotation android.annotation.SystemApi" +
Cole Fausta52ecf02023-12-20 11:57:07 -0800302 "\\(client=android.annotation.SystemApi.Client.PRIVILEGED_APPS\\)",
Motomu Utsumi2f2aa212023-11-09 16:34:07 +0900303 "--show-for-stub-purposes-annotation android.annotation.SystemApi" +
Cole Fausta52ecf02023-12-20 11:57:07 -0800304 "\\(client=android.annotation.SystemApi.Client.MODULE_LIBRARIES\\)",
Motomu Utsumiada9e982023-11-06 22:49:25 +0900305 ],
306 aidl: {
307 include_dirs: [
308 "packages/modules/Connectivity/framework/aidl-export",
309 "frameworks/native/aidl/binder", // For PersistableBundle.aidl
310 ],
311 },
312}
313
314java_library {
Motomu Utsumiba5dde82023-11-22 16:24:32 +0900315 name: "framework-connectivity-module-api-stubs-including-flagged",
316 srcs: [":framework-connectivity-module-api-stubs-including-flagged-droidstubs"],
Motomu Utsumiada9e982023-11-06 22:49:25 +0900317}
318
Igor Chernyshev9dac6602022-12-13 19:28:32 -0800319// Library providing limited APIs within the connectivity module, so that R+ components like
320// Tethering have a controlled way to depend on newer components like framework-connectivity that
321// are not loaded on R.
Chalard Jean2fb66f12023-08-25 12:50:37 +0900322// Note that this target needs to have access to hidden classes, and as such needs to list
323// the full libraries instead of the .impl lib (which only expose API classes).
Igor Chernyshev9dac6602022-12-13 19:28:32 -0800324java_library {
325 name: "connectivity-internal-api-util",
326 sdk_version: "module_current",
327 libs: [
328 "androidx.annotation_annotation",
Chalard Jean2fb66f12023-08-25 12:50:37 +0900329 "framework-connectivity-pre-jarjar",
Igor Chernyshev9dac6602022-12-13 19:28:32 -0800330 ],
331 jarjar_rules: ":framework-connectivity-jarjar-rules",
332 srcs: [
Chalard Jean2fb66f12023-08-25 12:50:37 +0900333 // Files listed here MUST all be annotated with @RequiresApi(Build.VERSION_CODES.S)
334 // or above as appropriate so that API checks are enforced for R+ users of this library
335 "src/android/net/RoutingCoordinatorManager.java",
Chalard Jean674f3472023-10-24 20:59:01 +0900336 "src/android/net/connectivity/ConnectivityInternalApiUtil.java",
Igor Chernyshev9dac6602022-12-13 19:28:32 -0800337 ],
338 visibility: [
339 "//packages/modules/Connectivity/Tethering:__subpackages__",
340 ],
341}