blob: 264ce440f59f13f2d176dd83d86bb5cde69e92a2 [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",
markchien2c4cc6f2019-09-30 14:40:57 +080020 include_dirs: ["frameworks/base/core/java"], // For framework parcelables.
markchien932da862019-08-27 10:19:38 +080021 srcs: [
markchiene7ccfca2019-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 {
markchiene7ccfca2019-12-16 20:15:20 +080035 name: "framework-tethering",
markchien2c4cc6f2019-09-30 14:40:57 +080036 sdk_version: "system_current",
markchiene7ccfca2019-12-16 20:15:20 +080037 srcs: [
38 "src/android/net/TetheringManager.java",
39 ":framework-tethering-annotations",
40 ],
markchien932da862019-08-27 10:19:38 +080041 static_libs: [
42 "tethering-aidl-interfaces-java",
43 ],
markchiene7ccfca2019-12-16 20:15:20 +080044 jarjar_rules: "jarjar-rules.txt",
45 installable: true,
46
47 libs: [
48 "android_system_stubs_current",
49 ],
Jiyong Park489e09a2020-01-06 13:30:59 +090050
51 hostdex: true, // for hiddenapi check
52 visibility: [
53 "//frameworks/base/packages/Tethering:__subpackages__",
54 //TODO(b/147200698) remove below lines when the platform is built with stubs
55 "//frameworks/base",
56 "//frameworks/base/services",
57 "//frameworks/base/services/core",
58 ],
59 apex_available: ["com.android.tethering"],
markchien932da862019-08-27 10:19:38 +080060}
markchien2c4cc6f2019-09-30 14:40:57 +080061
markchien2c4cc6f2019-09-30 14:40:57 +080062filegroup {
markchiene7ccfca2019-12-16 20:15:20 +080063 name: "framework-tethering-srcs",
64 srcs: [
65 "src/android/net/TetheringManager.java",
66 "src/android/net/IIntResultListener.aidl",
67 "src/android/net/ITetheringEventCallback.aidl",
68 "src/android/net/ITetheringConnector.aidl",
69 "src/android/net/TetheringConfigurationParcel.aidl",
70 "src/android/net/TetherStatesParcel.aidl",
71 ],
72 path: "src"
markchien2c4cc6f2019-09-30 14:40:57 +080073}