blob: b0ef153994359fff6103a514230eb5e3d4a3a79e [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.
markchien932da862019-08-27 10:19:38 +080015
16// AIDL interfaces between the core system and the tethering mainline module.
17aidl_interface {
18 name: "tethering-aidl-interfaces",
19 local_include_dir: "src",
markchienee6ad372019-09-30 14:40:57 +080020 include_dirs: ["frameworks/base/core/java"], // For framework parcelables.
markchien932da862019-08-27 10:19:38 +080021 srcs: [
markchien9d353822019-12-16 20:15:20 +080022 "src/android/net/*.aidl",
markchien932da862019-08-27 10:19:38 +080023 ],
24 backend: {
25 ndk: {
26 enabled: false,
27 },
28 cpp: {
29 enabled: false,
30 },
31 },
32}
33
34java_library {
markchien9d353822019-12-16 20:15:20 +080035 name: "framework-tethering",
markchienee6ad372019-09-30 14:40:57 +080036 sdk_version: "system_current",
markchien9d353822019-12-16 20:15:20 +080037 srcs: [
38 "src/android/net/TetheringManager.java",
markchien249752d2020-01-21 13:11:06 +080039 "src/android/net/TetheringConstants.java",
markchien9d353822019-12-16 20:15:20 +080040 ":framework-tethering-annotations",
41 ],
markchien932da862019-08-27 10:19:38 +080042 static_libs: [
43 "tethering-aidl-interfaces-java",
44 ],
markchien9d353822019-12-16 20:15:20 +080045 jarjar_rules: "jarjar-rules.txt",
46 installable: true,
47
48 libs: [
49 "android_system_stubs_current",
50 ],
Jiyong Park1eb89332020-01-06 13:30:59 +090051
52 hostdex: true, // for hiddenapi check
53 visibility: [
54 "//frameworks/base/packages/Tethering:__subpackages__",
55 //TODO(b/147200698) remove below lines when the platform is built with stubs
56 "//frameworks/base",
57 "//frameworks/base/services",
58 "//frameworks/base/services/core",
59 ],
60 apex_available: ["com.android.tethering"],
markchien932da862019-08-27 10:19:38 +080061}
markchienee6ad372019-09-30 14:40:57 +080062
markchienee6ad372019-09-30 14:40:57 +080063filegroup {
markchien9d353822019-12-16 20:15:20 +080064 name: "framework-tethering-srcs",
65 srcs: [
66 "src/android/net/TetheringManager.java",
markchien249752d2020-01-21 13:11:06 +080067 "src/android/net/TetheringConstants.java",
markchien9d353822019-12-16 20:15:20 +080068 "src/android/net/IIntResultListener.aidl",
69 "src/android/net/ITetheringEventCallback.aidl",
70 "src/android/net/ITetheringConnector.aidl",
markchien249752d2020-01-21 13:11:06 +080071 "src/android/net/TetheringCallbackStartedParcel.aidl",
markchien9d353822019-12-16 20:15:20 +080072 "src/android/net/TetheringConfigurationParcel.aidl",
markchienf6761bd2020-01-20 19:31:56 +080073 "src/android/net/TetheringRequestParcel.aidl",
markchien9d353822019-12-16 20:15:20 +080074 "src/android/net/TetherStatesParcel.aidl",
75 ],
76 path: "src"
markchienee6ad372019-09-30 14:40:57 +080077}