blob: f761f655d490ff5b1178fb8afe52035c7e67be38 [file] [log] [blame]
markchien0abdd112019-11-28 10:17:03 +08001//
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
Bob Badour97e6be22021-02-12 14:45:04 -080017package {
18 default_applicable_licenses: ["Android-Apache-2.0"],
19}
20
markchien598a75b2021-11-22 10:36:32 +080021// Defaults to enable/disable java targets which uses development APIs. "enabled" may have a
22// different value depending on the branch.
23java_defaults {
24 name: "ConnectivityNextEnableDefaults",
markchien06f04162021-11-24 15:34:39 +080025 enabled: false,
markchien598a75b2021-11-22 10:36:32 +080026}
27apex_defaults {
28 name: "ConnectivityApexDefaults",
29 // Tethering app to include in the AOSP apex. Branches that disable the "next" targets may use
30 // a stable tethering app instead, but will generally override the AOSP apex to use updatable
31 // package names and keys, so that apex will be unused anyway.
markchien06f04162021-11-24 15:34:39 +080032 apps: ["Tethering"], // Replace to "Tethering" if ConnectivityNextEnableDefaults is false.
markchien598a75b2021-11-22 10:36:32 +080033}
Remi NGUYEN VANd981a682022-01-27 13:23:18 +000034enable_tethering_next_apex = false
markchien598a75b2021-11-22 10:36:32 +080035// This is a placeholder comment to avoid merge conflicts
36// as the above target may have different "enabled" values
37// depending on the branch
38
markchien0abdd112019-11-28 10:17:03 +080039apex {
markchien8f831c02019-12-18 17:47:26 +080040 name: "com.android.tethering",
markchien598a75b2021-11-22 10:36:32 +080041 defaults: ["ConnectivityApexDefaults"],
Remi NGUYEN VAN6d575ca2021-01-13 15:44:38 +090042 compile_multilib: "both",
43 updatable: true,
44 min_sdk_version: "30",
satayev8bb425a2021-05-12 13:28:58 +010045 bootclasspath_fragments: [
46 "com.android.tethering-bootclasspath-fragment",
47 ],
Remi NGUYEN VAN2812f602021-01-08 01:19:44 +000048 java_libs: [
Remi NGUYEN VAN2812f602021-01-08 01:19:44 +000049 "service-connectivity",
50 ],
Remi NGUYEN VAN6d575ca2021-01-13 15:44:38 +090051 multilib: {
52 first: {
markchien8fb75e32021-11-11 17:53:56 +080053 jni_libs: [
54 "libservice-connectivity",
Wayne Ma790c83e2022-01-13 10:35:05 +080055 "libcom_android_connectivity_com_android_net_module_util_jni",
56 "libtraffic_controller_jni",
markchien8fb75e32021-11-11 17:53:56 +080057 ],
Ken Chen1647f602021-10-05 21:55:22 +080058 native_shared_libs: ["libnetd_updatable"],
Remi NGUYEN VAN6d575ca2021-01-13 15:44:38 +090059 },
60 both: {
61 jni_libs: ["libframework-connectivity-jni"],
Paul Duffinb28cb442021-05-26 10:46:20 +010062 },
Remi NGUYEN VAN6d575ca2021-01-13 15:44:38 +090063 },
Hungming Chen378e3232021-12-16 21:56:02 +080064 binaries: [
65 "clatd",
66 ],
Hungming Chenf9d40ae2022-01-14 17:42:43 +080067 canned_fs_config: "canned_fs_config",
Maciej Żenczykowskie9810ff2021-01-14 20:02:08 -080068 bpfs: [
Maciej Żenczykowski849b3aa2022-01-20 20:58:34 -080069 "clatd.o_mainline",
Ken Chen587d4232022-01-17 17:18:43 +080070 "netd.o_mainline",
Tyler Wear72388212021-09-09 14:49:02 -070071 "dscp_policy.o",
Maciej Żenczykowskie9810ff2021-01-14 20:02:08 -080072 "offload.o",
73 "test.o",
74 ],
Remi NGUYEN VANaffd94b2021-03-08 23:09:31 +090075 apps: [
76 "ServiceConnectivityResources",
Remi NGUYEN VANaffd94b2021-03-08 23:09:31 +090077 ],
Anton Hansson89eb55f2021-05-20 17:53:46 +010078 prebuilts: ["current_sdkinfo"],
markchien0abdd112019-11-28 10:17:03 +080079 manifest: "manifest.json",
markchien8f831c02019-12-18 17:47:26 +080080 key: "com.android.tethering.key",
Nikita Ioffe5f333572021-02-04 01:42:45 +000081 // Indicates that pre-installed version of this apex can be compressed.
82 // Whether it actually will be compressed is controlled on per-device basis.
83 compressible: true,
markchien0abdd112019-11-28 10:17:03 +080084
85 androidManifest: "AndroidManifest.xml",
86}
87
88apex_key {
markchien8f831c02019-12-18 17:47:26 +080089 name: "com.android.tethering.key",
90 public_key: "com.android.tethering.avbpubkey",
91 private_key: "com.android.tethering.pem",
markchien0abdd112019-11-28 10:17:03 +080092}
93
94android_app_certificate {
markchien8f831c02019-12-18 17:47:26 +080095 name: "com.android.tethering.certificate",
96 certificate: "com.android.tethering",
markchien0abdd112019-11-28 10:17:03 +080097}
markchiendbaff662020-05-05 17:42:44 +080098
satayev8bb425a2021-05-12 13:28:58 +010099// Encapsulate the contributions made by the com.android.tethering to the bootclasspath.
100bootclasspath_fragment {
101 name: "com.android.tethering-bootclasspath-fragment",
102 contents: [
103 "framework-connectivity",
Remi NGUYEN VAN22ea8772021-12-16 15:17:28 +0000104 // Changed in sc-mainline-prod only: no framework-connectivity-tiramisu
satayev8bb425a2021-05-12 13:28:58 +0100105 "framework-tethering",
106 ],
107 apex_available: ["com.android.tethering"],
Paul Duffinb28cb442021-05-26 10:46:20 +0100108
109 // The bootclasspath_fragments that provide APIs on which this depends.
110 fragments: [
111 {
112 apex: "com.android.art",
113 module: "art-bootclasspath-fragment",
114 },
115 ],
116
117 // Additional stubs libraries that this fragment's contents use which are
118 // not provided by another bootclasspath_fragment.
119 additional_stubs: [
120 "android-non-updatable",
121 ],
122
123 // Additional hidden API flag files to override the defaults. This must only be
124 // modified by the Soong or platform compat team.
125 hidden_api: {
Remi NGUYEN VAN955c33c2021-12-16 15:10:40 +0000126 max_target_r_low_priority: [
Remi NGUYEN VAN22ea8772021-12-16 15:17:28 +0000127 // Changed in sc-mainline-prod only: no list for
128 // framework-connectivity-tiramisu APIs as it is not in the APEX
Remi NGUYEN VAN955c33c2021-12-16 15:10:40 +0000129 ],
130 max_target_o_low_priority: [
131 "hiddenapi/hiddenapi-max-target-o-low-priority.txt",
Remi NGUYEN VAN22ea8772021-12-16 15:17:28 +0000132 // Changed in sc-mainline-prod only: no list for
133 // framework-connectivity-tiramisu APIs as it is not in the APEX
Remi NGUYEN VAN955c33c2021-12-16 15:10:40 +0000134 ],
Paul Duffinb28cb442021-05-26 10:46:20 +0100135 unsupported: ["hiddenapi/hiddenapi-unsupported.txt"],
136 },
satayev8bb425a2021-05-12 13:28:58 +0100137}
138
markchiendbaff662020-05-05 17:42:44 +0800139override_apex {
140 name: "com.android.tethering.inprocess",
141 base: "com.android.tethering",
142 package_name: "com.android.tethering.inprocess",
Remi NGUYEN VANf24553d2022-01-27 13:16:12 +0900143 enabled: enable_tethering_next_apex,
markchiendbaff662020-05-05 17:42:44 +0800144 apps: [
Remi NGUYEN VANf0f0cca2021-03-12 15:04:29 +0000145 "ServiceConnectivityResources",
markchiendbaff662020-05-05 17:42:44 +0800146 "InProcessTethering",
147 ],
148}