diff options
author | Jiyong Park <jiyong@google.com> | 2019-11-17 13:11:19 +0900 |
---|---|---|
committer | Jiyong Park <jiyong@google.com> | 2019-11-17 14:05:08 +0900 |
commit | bae2e907966dce0cb3eaf3e3a81cca4364b7d941 (patch) | |
tree | 36f1044b338cd00a9c6d62615ca0b640f947b9cf /services/wifi | |
parent | 54f726ccaa08320a61da5f6ab33e4baf95f6ba64 (diff) |
Add filegroups for services.* libraries
... in preparation for creating a stub library from services.jar
Bug: 139391334
Test: m
Change-Id: Ifd6cfc77acf2284804a2f64011c2733b5c222369
Diffstat (limited to 'services/wifi')
-rw-r--r-- | services/wifi/Android.bp | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/services/wifi/Android.bp b/services/wifi/Android.bp index 608fc2c7a55e..8a7f73fcf501 100644 --- a/services/wifi/Android.bp +++ b/services/wifi/Android.bp @@ -1,14 +1,16 @@ -// Interfaces between the core system and the wifi mainline module. -java_library_static { - name: "services.wifi", +filegroup { + name: "services.wifi-sources", srcs: [ "java/**/*.java", "java/**/*.aidl", ], - aidl: { - local_include_dirs: ["java"] - }, - libs: [ - "services.net", - ], + path: "java", + visibility: ["//frameworks/base/services"], +} + +// Interfaces between the core system and the wifi mainline module. +java_library_static { + name: "services.wifi", + srcs: [":services.wifi-sources"], + libs: ["services.net"], } |