blob: ec8887cad46141456dba9fbadd2f186bfa81d035 [file] [log] [blame]
Remi NGUYEN VAN59262cb2020-12-21 18:40:08 +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 Badour6c7ed9d2021-02-12 17:07:05 -080017package {
18 // See: http://go/android-license-faq
Baligh Uddin36847132021-05-23 16:38:40 +000019 default_applicable_licenses: ["Android-Apache-2.0"],
Bob Badour6c7ed9d2021-02-12 17:07:05 -080020}
21
Remi NGUYEN VANeaa96582021-01-08 01:19:44 +000022cc_library_shared {
23 name: "libservice-connectivity",
Remi NGUYEN VAN59262cb2020-12-21 18:40:08 +090024 // TODO: build against the NDK (sdk_version: "30" for example)
25 cflags: [
26 "-Wall",
27 "-Werror",
28 "-Wno-unused-parameter",
29 "-Wthread-safety",
30 ],
31 srcs: [
32 "jni/com_android_server_TestNetworkService.cpp",
Remi NGUYEN VANeaa96582021-01-08 01:19:44 +000033 "jni/onload.cpp",
Remi NGUYEN VAN59262cb2020-12-21 18:40:08 +090034 ],
Remi NGUYEN VAN4be92df2021-03-24 01:49:39 +000035 stl: "libc++_static",
Remi NGUYEN VAN59262cb2020-12-21 18:40:08 +090036 shared_libs: [
37 "libbase",
38 "liblog",
39 "libnativehelper",
40 // TODO: remove dependency on ifc_[add/del]_address by having Java code to add/delete
41 // addresses, and remove dependency on libnetutils.
42 "libnetutils",
43 ],
Pete Bentleyb1456112021-01-07 13:51:18 +000044 apex_available: [
Remi NGUYEN VANeaa96582021-01-08 01:19:44 +000045 "com.android.tethering",
Pete Bentleyb1456112021-01-07 13:51:18 +000046 ],
47}
48
Remi NGUYEN VAN59262cb2020-12-21 18:40:08 +090049java_library {
Aaron Huang63338842021-01-08 18:32:00 +080050 name: "service-connectivity-pre-jarjar",
Remi NGUYEN VAN4ee6c502021-03-22 10:25:12 +000051 sdk_version: "system_server_current",
Remi NGUYEN VAN59262cb2020-12-21 18:40:08 +090052 srcs: [
Remi NGUYEN VANcdb45f82021-05-13 12:53:15 +000053 "src/**/*.java",
Aaron Huang63338842021-01-08 18:32:00 +080054 ":framework-connectivity-shared-srcs",
Remi NGUYEN VAN4ee6c502021-03-22 10:25:12 +000055 ":services-connectivity-shared-srcs",
56 // TODO: move to net-utils-device-common, enable shrink optimization to avoid extra classes
57 ":net-module-utils-srcs",
Remi NGUYEN VAN59262cb2020-12-21 18:40:08 +090058 ],
Remi NGUYEN VAN59262cb2020-12-21 18:40:08 +090059 libs: [
Remi NGUYEN VAN4ee6c502021-03-22 10:25:12 +000060 // TODO (b/183097033) remove once system_server_current includes core_current
61 "stable.core.platform.api.stubs",
62 "android_system_server_stubs_current",
63 "framework-annotations-lib",
64 "framework-connectivity.impl",
65 "framework-tethering.stubs.module_lib",
66 "framework-wifi.stubs.module_lib",
Remi NGUYEN VAN59262cb2020-12-21 18:40:08 +090067 "unsupportedappusage",
Remi NGUYEN VAN907ebd42021-03-08 22:05:03 +090068 "ServiceConnectivityResources",
Remi NGUYEN VAN59262cb2020-12-21 18:40:08 +090069 ],
70 static_libs: [
Remi NGUYEN VAN4ee6c502021-03-22 10:25:12 +000071 "dnsresolver_aidl_interface-V7-java",
Remi NGUYEN VAN96a931b2021-03-02 03:28:50 +000072 "modules-utils-os",
Remi NGUYEN VAN59262cb2020-12-21 18:40:08 +090073 "net-utils-device-common",
74 "net-utils-framework-common",
lucaslinef337532021-01-18 11:58:24 +080075 "netd-client",
Remi NGUYEN VAN4ee6c502021-03-22 10:25:12 +000076 "netlink-client",
77 "networkstack-client",
lifrc0d25c12021-03-09 17:24:46 +080078 "PlatformProperties",
Remi NGUYEN VANd8bc0fa2021-03-11 15:41:52 +090079 "service-connectivity-protos",
Remi NGUYEN VAN59262cb2020-12-21 18:40:08 +090080 ],
81 apex_available: [
82 "//apex_available:platform",
Remi NGUYEN VANeaa96582021-01-08 01:19:44 +000083 "com.android.tethering",
Remi NGUYEN VAN59262cb2020-12-21 18:40:08 +090084 ],
85}
Aaron Huang63338842021-01-08 18:32:00 +080086
87java_library {
Remi NGUYEN VANd8bc0fa2021-03-11 15:41:52 +090088 name: "service-connectivity-protos",
Remi NGUYEN VAN4ee6c502021-03-22 10:25:12 +000089 sdk_version: "system_current",
Remi NGUYEN VANd8bc0fa2021-03-11 15:41:52 +090090 proto: {
91 type: "nano",
92 },
93 srcs: [
94 ":system-messages-proto-src",
95 ],
96 libs: ["libprotobuf-java-nano"],
97 apex_available: [
98 "//apex_available:platform",
99 "com.android.tethering",
100 ],
101}
102
103java_library {
Aaron Huang63338842021-01-08 18:32:00 +0800104 name: "service-connectivity",
Remi NGUYEN VAN4ee6c502021-03-22 10:25:12 +0000105 sdk_version: "system_server_current",
Aaron Huang63338842021-01-08 18:32:00 +0800106 installable: true,
lifrc0d25c12021-03-09 17:24:46 +0800107 static_libs: [
Aaron Huang63338842021-01-08 18:32:00 +0800108 "service-connectivity-pre-jarjar",
109 ],
110 jarjar_rules: "jarjar-rules.txt",
111 apex_available: [
112 "//apex_available:platform",
113 "com.android.tethering",
114 ],
115}