markchien | 932da86 | 2019-08-27 10:19:38 +0800 | [diff] [blame] | 1 | // |
| 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. |
| 18 | aidl_interface { |
| 19 | name: "tethering-aidl-interfaces", |
| 20 | local_include_dir: "src", |
markchien | 2c4cc6f | 2019-09-30 14:40:57 +0800 | [diff] [blame] | 21 | include_dirs: ["frameworks/base/core/java"], // For framework parcelables. |
markchien | 932da86 | 2019-08-27 10:19:38 +0800 | [diff] [blame] | 22 | srcs: [ |
markchien | 2c4cc6f | 2019-09-30 14:40:57 +0800 | [diff] [blame] | 23 | "src/android/net/ITetherInternalCallback.aidl", |
markchien | 932da86 | 2019-08-27 10:19:38 +0800 | [diff] [blame] | 24 | "src/android/net/ITetheringConnector.aidl", |
markchien | 2c4cc6f | 2019-09-30 14:40:57 +0800 | [diff] [blame] | 25 | "src/android/net/TetheringConfigurationParcel.aidl", |
| 26 | "src/android/net/TetherStatesParcel.aidl", |
markchien | 932da86 | 2019-08-27 10:19:38 +0800 | [diff] [blame] | 27 | ], |
| 28 | backend: { |
| 29 | ndk: { |
| 30 | enabled: false, |
| 31 | }, |
| 32 | cpp: { |
| 33 | enabled: false, |
| 34 | }, |
| 35 | }, |
| 36 | } |
| 37 | |
| 38 | java_library { |
| 39 | name: "tethering-client", |
markchien | 2c4cc6f | 2019-09-30 14:40:57 +0800 | [diff] [blame] | 40 | sdk_version: "system_current", |
markchien | 932da86 | 2019-08-27 10:19:38 +0800 | [diff] [blame] | 41 | static_libs: [ |
| 42 | "tethering-aidl-interfaces-java", |
| 43 | ], |
| 44 | } |
markchien | 2c4cc6f | 2019-09-30 14:40:57 +0800 | [diff] [blame] | 45 | |
| 46 | // This is temporary file group which would be removed after TetheringManager is built |
| 47 | // into tethering-client. Will be done by aosp/1156906. |
| 48 | filegroup { |
| 49 | name: "tethering-manager", |
| 50 | srcs: ["src/android/net/TetheringManager.java"], |
| 51 | } |