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. |
markchien | 932da86 | 2019-08-27 10:19:38 +0800 | [diff] [blame] | 15 | |
| 16 | // AIDL interfaces between the core system and the tethering mainline module. |
| 17 | aidl_interface { |
| 18 | name: "tethering-aidl-interfaces", |
| 19 | local_include_dir: "src", |
markchien | 2c4cc6f | 2019-09-30 14:40:57 +0800 | [diff] [blame] | 20 | include_dirs: ["frameworks/base/core/java"], // For framework parcelables. |
markchien | 932da86 | 2019-08-27 10:19:38 +0800 | [diff] [blame] | 21 | srcs: [ |
markchien | e7ccfca | 2019-12-16 20:15:20 +0800 | [diff] [blame] | 22 | "src/android/net/*.aidl", |
markchien | 932da86 | 2019-08-27 10:19:38 +0800 | [diff] [blame] | 23 | ], |
| 24 | backend: { |
| 25 | ndk: { |
| 26 | enabled: false, |
| 27 | }, |
| 28 | cpp: { |
| 29 | enabled: false, |
| 30 | }, |
| 31 | }, |
| 32 | } |
| 33 | |
| 34 | java_library { |
markchien | e7ccfca | 2019-12-16 20:15:20 +0800 | [diff] [blame] | 35 | name: "framework-tethering", |
markchien | 2c4cc6f | 2019-09-30 14:40:57 +0800 | [diff] [blame] | 36 | sdk_version: "system_current", |
markchien | e7ccfca | 2019-12-16 20:15:20 +0800 | [diff] [blame] | 37 | srcs: [ |
| 38 | "src/android/net/TetheringManager.java", |
| 39 | ":framework-tethering-annotations", |
| 40 | ], |
markchien | 932da86 | 2019-08-27 10:19:38 +0800 | [diff] [blame] | 41 | static_libs: [ |
| 42 | "tethering-aidl-interfaces-java", |
| 43 | ], |
markchien | e7ccfca | 2019-12-16 20:15:20 +0800 | [diff] [blame] | 44 | jarjar_rules: "jarjar-rules.txt", |
| 45 | installable: true, |
| 46 | |
| 47 | libs: [ |
| 48 | "android_system_stubs_current", |
| 49 | ], |
markchien | 932da86 | 2019-08-27 10:19:38 +0800 | [diff] [blame] | 50 | } |
markchien | 2c4cc6f | 2019-09-30 14:40:57 +0800 | [diff] [blame] | 51 | |
markchien | 2c4cc6f | 2019-09-30 14:40:57 +0800 | [diff] [blame] | 52 | filegroup { |
markchien | e7ccfca | 2019-12-16 20:15:20 +0800 | [diff] [blame] | 53 | 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" |
markchien | 2c4cc6f | 2019-09-30 14:40:57 +0800 | [diff] [blame] | 63 | } |