diff options
author | Jiyong Park <jiyong@google.com> | 2019-08-16 21:17:14 +0900 |
---|---|---|
committer | Jiyong Park <jiyong@google.com> | 2019-08-24 00:04:18 +0000 |
commit | 7e1339e0556b320ceaf9dcbbe092f175e05b7c0d (patch) | |
tree | 288dbb0572d3e348eefa68eadcedda5262d1f8aa /location/lib | |
parent | 7f1e92a654a7966b07b73690b7724d0540ffeb50 (diff) |
Use filegroup to simplify Android.bp for frameworks and its friends
Java and AIDL source files under frameworks/base are now modularized
using filegroup. Each filegroup has 'path' property set to the base
directory of the ssource files. This allows us to not rely on
aidl.[local_]include_dirs and srcs_lib_whitelist_dirs to get the base
directories.
Bug: 70046217
Test: m
Exempt-From-Owner-Approval: Approved internally
Merged-In: I0705ddf76b3c628127f65d75e0a8b06c6c250fe2
(cherry picked from commit b360931bf0f2d011dada18762829c0d0e47c54b6)
Change-Id: I0705ddf76b3c628127f65d75e0a8b06c6c250fe2
Diffstat (limited to 'location/lib')
-rw-r--r-- | location/lib/Android.bp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/location/lib/Android.bp b/location/lib/Android.bp index 59963dea0ab9..1bf5221b1dc1 100644 --- a/location/lib/Android.bp +++ b/location/lib/Android.bp @@ -21,6 +21,5 @@ java_sdk_library { srcs_lib: "framework", // TODO(b/70046217): remove core/java and android below. It was added to provide definitions for // types like android.os.Bundle - srcs_lib_whitelist_dirs: ["core/java", "location/java"], srcs_lib_whitelist_pkgs: ["android", "com.android.internal.location"], } |