diff options
| author | 2019-06-19 05:57:37 -0700 | |
|---|---|---|
| committer | 2019-06-19 05:57:37 -0700 | |
| commit | fc85dca16eefe824c03f13c913025e07453ec0b4 (patch) | |
| tree | 57d57b5f68fd5d1f5a394208ce3b970879545713 | |
| parent | 5f84625a7b0e002f5d2444cf67495440da30bb71 (diff) | |
| parent | 4575c6960865ded49154e68d384a922f0c77329b (diff) | |
Merge "Replace no_framework_libs: true with sdk_version: "core_platform"" into qt-dev-plus-aosp am: 23b3ebfd24
am: 4575c69608
Change-Id: I01c64024c8d59a607a2a8c6d41aec852b41d4445
| -rw-r--r-- | Android.bp | 8 | ||||
| -rw-r--r-- | cmds/statsd/Android.bp | 2 | ||||
| -rw-r--r-- | core/proto/android/stats/devicepolicy/Android.bp | 2 | ||||
| -rw-r--r-- | core/res/Android.bp | 2 | ||||
| -rw-r--r-- | media/Android.bp | 2 |
5 files changed, 8 insertions, 8 deletions
diff --git a/Android.bp b/Android.bp index 8fedc34fb05a..1902a5f1b3ff 100644 --- a/Android.bp +++ b/Android.bp @@ -747,7 +747,7 @@ java_defaults { "core/java/android/content/pm/AndroidTestBaseUpdater.java", ], - no_framework_libs: true, + sdk_version: "core_platform", libs: [ "ext", "updatable_media_stubs", @@ -951,7 +951,7 @@ filegroup { java_library { name: "ext", installable: true, - no_framework_libs: true, + sdk_version: "core_platform", static_libs: [ "libphonenumber-platform", "nist-sip", @@ -1175,7 +1175,7 @@ optional_subdirs = [ // updated to use hwbinder.stubs. java_library { name: "hwbinder", - no_framework_libs: true, + sdk_version: "core_platform", srcs: [ "core/java/android/os/HidlSupport.java", @@ -1702,7 +1702,7 @@ droidstubs { "core/java/android/util/AndroidException.java", ], installable: false, - no_framework_libs: true, + sdk_version: "core_platform", annotations_enabled: true, previous_api: ":last-released-public-api", merge_annotations_dirs: [ diff --git a/cmds/statsd/Android.bp b/cmds/statsd/Android.bp index 6bedfcdfafa3..2f0dc3cb1e98 100644 --- a/cmds/statsd/Android.bp +++ b/cmds/statsd/Android.bp @@ -333,7 +333,7 @@ cc_benchmark { // ==== java proto device library (for test only) ============================== java_library { name: "statsdprotolite", - no_framework_libs: true, + sdk_version: "core_platform", proto: { type: "lite", include_dirs: ["external/protobuf/src"], diff --git a/core/proto/android/stats/devicepolicy/Android.bp b/core/proto/android/stats/devicepolicy/Android.bp index 6ae54e23117d..5fb278a34dae 100644 --- a/core/proto/android/stats/devicepolicy/Android.bp +++ b/core/proto/android/stats/devicepolicy/Android.bp @@ -29,5 +29,5 @@ java_library_static { static_libs: ["libprotobuf-java-nano"], } }, - no_framework_libs: true, + sdk_version: "core_platform", } diff --git a/core/res/Android.bp b/core/res/Android.bp index 4e60f8ca025c..3402033b04f1 100644 --- a/core/res/Android.bp +++ b/core/res/Android.bp @@ -16,7 +16,7 @@ android_app { name: "framework-res", - no_framework_libs: true, + sdk_version: "core_platform", certificate: "platform", // Soong special-cases framework-res to install this alongside diff --git a/media/Android.bp b/media/Android.bp index 70dacb20cde7..4f9671f9936b 100644 --- a/media/Android.bp +++ b/media/Android.bp @@ -27,7 +27,7 @@ java_library { installable: true, // Make sure that the implementaion only relies on SDK or system APIs. - no_framework_libs: true, + sdk_version: "core_platform", libs: [ // The order matters. android_system_* library should come later. "framework_media_annotation", |