diff options
Diffstat (limited to 'native/android/Android.bp')
-rw-r--r-- | native/android/Android.bp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/native/android/Android.bp b/native/android/Android.bp index 3daaf05fa8d5..9566b9242fc7 100644 --- a/native/android/Android.bp +++ b/native/android/Android.bp @@ -13,6 +13,15 @@ // limitations under the License. // The headers module is in frameworks/native/Android.bp. +package { + // See: http://go/android-license-faq + // A large-scale-change added 'default_applicable_licenses' to import + // all of the 'license_kinds' from "frameworks_base_license" + // to get the below license kinds: + // SPDX-license-identifier-Apache-2.0 + default_applicable_licenses: ["frameworks_base_license"], +} + ndk_library { name: "libandroid", symbol_file: "libandroid.map.txt", @@ -88,7 +97,7 @@ cc_library_shared { "libarect", ], - header_libs: [ "libhwui_internal_headers",], + header_libs: [ "libhwui_internal_headers", "libandroid_headers_private"], whole_static_libs: ["libnativewindow"], |