Merge "Split parcelable .aidl files to aidl-export" into sc-dev

This commit is contained in:
Remi NGUYEN VAN
2021-02-18 01:16:10 +00:00
committed by Android (Google) Code Review
23 changed files with 24 additions and 2 deletions

View File

@@ -14,14 +14,36 @@
// limitations under the License.
//
// TODO: use a java_library in the bootclasspath instead
filegroup {
name: "framework-connectivity-sources",
name: "framework-connectivity-internal-sources",
srcs: [
"src/**/*.java",
"src/**/*.aidl",
],
path: "src",
visibility: [
"//visibility:private",
],
}
filegroup {
name: "framework-connectivity-aidl-export-sources",
srcs: [
"aidl-export/**/*.aidl",
],
path: "aidl-export",
visibility: [
"//visibility:private",
],
}
// TODO: use a java_library in the bootclasspath instead
filegroup {
name: "framework-connectivity-sources",
srcs: [
":framework-connectivity-internal-sources",
":framework-connectivity-aidl-export-sources",
],
visibility: [
"//frameworks/base",
"//packages/modules/Connectivity:__subpackages__",