blob: 5785707cb9c5ee38802b44a3a2a89a360d104b2e [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 ],
markchien932da862019-08-27 10:19:38 +080050}
markchien2c4cc6f2019-09-30 14:40:57 +080051
markchien2c4cc6f2019-09-30 14:40:57 +080052filegroup {
markchiene7ccfca2019-12-16 20:15:20 +080053 name: "framework-tethering-srcs",
54 srcs: [
55 "src/android/net/TetheringManager.java",
56 "src/android/net/IIntResultListener.aidl",
57 "src/android/net/ITetheringEventCallback.aidl",
58 "src/android/net/ITetheringConnector.aidl",
59 "src/android/net/TetheringConfigurationParcel.aidl",
60 "src/android/net/TetherStatesParcel.aidl",
61 ],
62 path: "src"
markchien2c4cc6f2019-09-30 14:40:57 +080063}