blob: adc5a723a9607693353cb13854ebfb5ad91ac11d [file] [log] [blame]
markchien017fef22019-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
17// AIDL interfaces between the core system and the tethering mainline module.
18aidl_interface {
19 name: "tethering-aidl-interfaces",
20 local_include_dir: "src",
markchien0df2ebc42019-09-30 14:40:57 +080021 include_dirs: ["frameworks/base/core/java"], // For framework parcelables.
markchien017fef22019-08-27 10:19:38 +080022 srcs: [
markchien0df2ebc42019-09-30 14:40:57 +080023 "src/android/net/ITetherInternalCallback.aidl",
markchien017fef22019-08-27 10:19:38 +080024 "src/android/net/ITetheringConnector.aidl",
markchien0df2ebc42019-09-30 14:40:57 +080025 "src/android/net/TetheringConfigurationParcel.aidl",
26 "src/android/net/TetherStatesParcel.aidl",
markchien017fef22019-08-27 10:19:38 +080027 ],
28 backend: {
29 ndk: {
30 enabled: false,
31 },
32 cpp: {
33 enabled: false,
34 },
35 },
36}
37
38java_library {
39 name: "tethering-client",
markchien0df2ebc42019-09-30 14:40:57 +080040 sdk_version: "system_current",
markchien017fef22019-08-27 10:19:38 +080041 static_libs: [
42 "tethering-aidl-interfaces-java",
43 ],
44}
markchien0df2ebc42019-09-30 14:40:57 +080045
46// This is temporary file group which would be removed after TetheringManager is built
47// into tethering-client. Will be done by aosp/1156906.
48filegroup {
49 name: "tethering-manager",
50 srcs: ["src/android/net/TetheringManager.java"],
51}