blob: 23aa7f8d51b12813c028c3e58eeda8f5adf57919 [file] [log] [blame]
markchien932da862019-08-27 10:19:38 +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
17java_defaults {
18 name: "TetheringAndroidLibraryDefaults",
Anton Hanssonbbe4af12020-03-18 14:15:42 +000019 sdk_version: "module_current",
Nikita Ioffe583e35a2020-10-31 22:41:41 +000020 min_sdk_version: "30",
markchien932da862019-08-27 10:19:38 +080021 srcs: [
22 "src/**/*.java",
markchien43e97e02019-09-03 15:58:06 +080023 ":framework-tethering-shared-srcs",
markchien12c5bb82020-01-07 14:43:17 +080024 ":tethering-module-utils-srcs",
markchien43e97e02019-09-03 15:58:06 +080025 ":services-tethering-shared-srcs",
markchien932da862019-08-27 10:19:38 +080026 ],
27 static_libs: [
28 "androidx.annotation_annotation",
Hungming Chen140042d2020-05-29 19:30:01 +080029 "netd_aidl_interface-unstable-java",
Remi NGUYEN VAN88998f42019-08-09 15:52:06 +090030 "netlink-client",
Xiao Mae5e07432020-06-19 12:04:13 +090031 // TODO: use networkstack-client instead of just including the AIDL interface
32 "networkstack-aidl-interfaces-unstable-java",
markchien547e1682020-02-05 12:42:25 +080033 "android.hardware.tetheroffload.config-V1.0-java",
markchien6aa38892019-09-25 14:33:39 +080034 "android.hardware.tetheroffload.control-V1.0-java",
markchien75fc6ab2020-01-14 17:28:47 +080035 "net-utils-framework-common",
Chalard Jeanbdcca922020-06-26 00:19:33 +090036 "net-utils-device-common",
markchien932da862019-08-27 10:19:38 +080037 ],
markchien9d353822019-12-16 20:15:20 +080038 libs: [
waynemab7048af2020-06-19 19:48:56 +080039 "framework-statsd.stubs.module_lib",
Paul Duffin2dae2722020-05-13 12:28:49 +010040 "framework-tethering.impl",
Paul Duffin6812c1b2020-05-31 11:35:50 +010041 "framework-wifi",
Artur Satayev4784fb02019-12-10 17:47:53 +000042 "unsupportedappusage",
markchien9d353822019-12-16 20:15:20 +080043 ],
markchien84a92822020-01-16 11:21:53 +080044 plugins: ["java_api_finder"],
markchien932da862019-08-27 10:19:38 +080045 manifest: "AndroidManifestBase.xml",
46}
47
48// Build tethering static library, used to compile both variants of the tethering.
49android_library {
50 name: "TetheringApiCurrentLib",
51 defaults: ["TetheringAndroidLibraryDefaults"],
52}
53
markchien810aa682019-10-23 16:27:52 +080054// Due to b/143733063, APK can't access a jni lib that is in APEX (but not in the APK).
55cc_library {
markchienf87ebdc2019-12-07 22:02:28 +080056 name: "libtetherutilsjni",
markchien547e1682020-02-05 12:42:25 +080057 sdk_version: "current",
Jooyung Han8182d8b2020-04-29 02:43:30 +090058 apex_available: [
59 "//apex_available:platform", // Used by InProcessTethering
60 "com.android.tethering",
61 ],
Nikita Ioffe583e35a2020-10-31 22:41:41 +000062 min_sdk_version: "30",
markchien6aa38892019-09-25 14:33:39 +080063 srcs: [
markchienf87ebdc2019-12-07 22:02:28 +080064 "jni/android_net_util_TetheringUtils.cpp",
markchien6aa38892019-09-25 14:33:39 +080065 ],
66 shared_libs: [
markchien6aa38892019-09-25 14:33:39 +080067 "liblog",
markchien547e1682020-02-05 12:42:25 +080068 "libnativehelper_compat_libc++",
markchien6aa38892019-09-25 14:33:39 +080069 ],
70
markchien547e1682020-02-05 12:42:25 +080071 // We cannot use plain "libc++" here to link libc++ dynamically because it results in:
72 // java.lang.UnsatisfiedLinkError: dlopen failed: library "libc++_shared.so" not found
73 // even if "libc++" is added into jni_libs below. Adding "libc++_shared" into jni_libs doesn't
74 // build because soong complains of:
75 // module Tethering missing dependencies: libc++_shared
76 //
77 // So, link libc++ statically. This means that we also need to ensure that all the C++ libraries
78 // we depend on do not dynamically link libc++. This is currently the case, because liblog is
79 // C-only and libnativehelper_compat_libc also uses stl: "c++_static".
80 stl: "c++_static",
81
markchien6aa38892019-09-25 14:33:39 +080082 cflags: [
83 "-Wall",
84 "-Werror",
85 "-Wno-unused-parameter",
86 "-Wthread-safety",
87 ],
markchien810aa682019-10-23 16:27:52 +080088
89 ldflags: ["-Wl,--exclude-libs=ALL,-error-limit=0"],
markchien6aa38892019-09-25 14:33:39 +080090}
91
markchien932da862019-08-27 10:19:38 +080092// Common defaults for compiling the actual APK.
93java_defaults {
94 name: "TetheringAppDefaults",
Anton Hanssonbbe4af12020-03-18 14:15:42 +000095 sdk_version: "module_current",
markchien932da862019-08-27 10:19:38 +080096 privileged: true,
markchien6aa38892019-09-25 14:33:39 +080097 jni_libs: [
markchienf87ebdc2019-12-07 22:02:28 +080098 "libtetherutilsjni",
markchien6aa38892019-09-25 14:33:39 +080099 ],
markchien932da862019-08-27 10:19:38 +0800100 resource_dirs: [
101 "res",
102 ],
markchien9d353822019-12-16 20:15:20 +0800103 libs: [
104 "framework-tethering",
Anton Hanssonb8a342e2020-10-02 16:38:21 +0100105 "framework-wifi",
markchien9d353822019-12-16 20:15:20 +0800106 ],
107 jarjar_rules: "jarjar-rules.txt",
markchien932da862019-08-27 10:19:38 +0800108 optimize: {
109 proguard_flags_files: ["proguard.flags"],
110 },
111}
112
113// Non-updatable tethering running in the system server process for devices not using the module
markchienee6ad372019-09-30 14:40:57 +0800114android_app {
115 name: "InProcessTethering",
116 defaults: ["TetheringAppDefaults"],
117 static_libs: ["TetheringApiCurrentLib"],
118 certificate: "platform",
119 manifest: "AndroidManifest_InProcess.xml",
120 // InProcessTethering is a replacement for Tethering
121 overrides: ["Tethering"],
markchiendbaff662020-05-05 17:42:44 +0800122 apex_available: ["com.android.tethering"],
Nikita Ioffe583e35a2020-10-31 22:41:41 +0000123 min_sdk_version: "30",
markchienee6ad372019-09-30 14:40:57 +0800124}
markchien932da862019-08-27 10:19:38 +0800125
126// Updatable tethering packaged as an application
127android_app {
128 name: "Tethering",
129 defaults: ["TetheringAppDefaults"],
130 static_libs: ["TetheringApiCurrentLib"],
131 certificate: "networkstack",
132 manifest: "AndroidManifest.xml",
133 use_embedded_native_libs: true,
134 // The permission configuration *must* be included to ensure security of the device
135 required: ["NetworkPermissionConfig"],
Jiyong Park1eb89332020-01-06 13:30:59 +0900136 apex_available: ["com.android.tethering"],
Nikita Ioffe583e35a2020-10-31 22:41:41 +0000137 min_sdk_version: "30",
markchien932da862019-08-27 10:19:38 +0800138}