diff options
author | 2020-04-16 18:48:32 +0900 | |
---|---|---|
committer | 2020-04-22 18:58:21 +0900 | |
commit | a395c8d9aa8e985d8c45f5dffa6518550a70d9a1 (patch) | |
tree | 54f31dc83becdb2b8d3c149408093cf8379035e6 | |
parent | 898879b988f3bc3aaf3821293e1cf31fdc053fdd (diff) |
Set min_sdk_version to be part of mainline modules
Modules contributing mainline modules (APK/APEX) should set
min_sdk_version as well as apex_available.
For now setting min_sdk_version doesn't change build outputs.
But build-time checks will be added soon.
Bug: 152655956
Test: m
Change-Id: Ifea5ed988fad2e0d29271e6e9cbf0e12100b37d9
-rw-r--r-- | headers/Android.bp | 1 | ||||
-rw-r--r-- | libs/arect/Android.bp | 1 | ||||
-rw-r--r-- | libs/binder/Android.bp | 2 | ||||
-rw-r--r-- | libs/binderthreadstate/Android.bp | 3 | ||||
-rw-r--r-- | libs/gui/Android.bp | 1 | ||||
-rw-r--r-- | libs/gui/sysprop/Android.bp | 3 | ||||
-rw-r--r-- | libs/nativebase/Android.bp | 3 | ||||
-rw-r--r-- | libs/nativewindow/Android.bp | 1 | ||||
-rw-r--r-- | libs/ui/Android.bp | 2 | ||||
-rw-r--r-- | libs/vr/libpdx/Android.bp | 1 |
10 files changed, 16 insertions, 2 deletions
diff --git a/headers/Android.bp b/headers/Android.bp index 82bc8a15f7..53372357e6 100644 --- a/headers/Android.bp +++ b/headers/Android.bp @@ -17,4 +17,5 @@ cc_library_headers { "libutils_headers", "libstagefright_foundation_headers", ], + min_sdk_version: "29", } diff --git a/libs/arect/Android.bp b/libs/arect/Android.bp index 2518b1427d..f66673f6ad 100644 --- a/libs/arect/Android.bp +++ b/libs/arect/Android.bp @@ -35,4 +35,5 @@ cc_library_static { enabled: true, }, }, + min_sdk_version: "29", } diff --git a/libs/binder/Android.bp b/libs/binder/Android.bp index c2991cd5bc..290a3a6f03 100644 --- a/libs/binder/Android.bp +++ b/libs/binder/Android.bp @@ -28,6 +28,7 @@ cc_library_headers { "libcutils_headers", "libutils_headers", ], + min_sdk_version: "29", } // These interfaces are android-specific implementation unrelated to binder @@ -152,6 +153,7 @@ cc_library { sanitize: { misc_undefined: ["integer"], }, + min_sdk_version: "29", } // AIDL interface between libbinder and framework.jar diff --git a/libs/binderthreadstate/Android.bp b/libs/binderthreadstate/Android.bp index 5eb509c4a0..88752ee87e 100644 --- a/libs/binderthreadstate/Android.bp +++ b/libs/binderthreadstate/Android.bp @@ -22,7 +22,7 @@ cc_library_static { shared_libs: [ "libbinder", - "libhidlbase", // libhwbinder is in here + "libhidlbase", // libhwbinder is in here ], export_include_dirs: ["include"], @@ -31,6 +31,7 @@ cc_library_static { "-Wall", "-Werror", ], + min_sdk_version: "29", } hidl_package_root { diff --git a/libs/gui/Android.bp b/libs/gui/Android.bp index f3d5aab089..769d230995 100644 --- a/libs/gui/Android.bp +++ b/libs/gui/Android.bp @@ -27,6 +27,7 @@ cc_library_headers { "android.hardware.graphics.bufferqueue@1.0", "android.hardware.graphics.bufferqueue@2.0", ], + min_sdk_version: "29", } cc_library_shared { diff --git a/libs/gui/sysprop/Android.bp b/libs/gui/sysprop/Android.bp index e7f7c1fc86..64b1eacaa2 100644 --- a/libs/gui/sysprop/Android.bp +++ b/libs/gui/sysprop/Android.bp @@ -4,4 +4,7 @@ sysprop_library { api_packages: ["android.sysprop"], property_owner: "Platform", vendor_available: true, + cpp: { + min_sdk_version: "29", + }, } diff --git a/libs/nativebase/Android.bp b/libs/nativebase/Android.bp index 7375a2bc2f..9e7e4a2291 100644 --- a/libs/nativebase/Android.bp +++ b/libs/nativebase/Android.bp @@ -25,5 +25,6 @@ cc_library_headers { windows: { enabled: true, }, - } + }, + min_sdk_version: "29", } diff --git a/libs/nativewindow/Android.bp b/libs/nativewindow/Android.bp index 55400c7b32..894f45a4c6 100644 --- a/libs/nativewindow/Android.bp +++ b/libs/nativewindow/Android.bp @@ -25,6 +25,7 @@ cc_library_headers { name: "libnativewindow_headers", export_include_dirs: ["include"], vendor_available: true, + min_sdk_version: "29", } ndk_library { diff --git a/libs/ui/Android.bp b/libs/ui/Android.bp index 080336b890..8388743c22 100644 --- a/libs/ui/Android.bp +++ b/libs/ui/Android.bp @@ -135,6 +135,7 @@ cc_library_shared { "libhardware_headers", "libui_headers", ], + min_sdk_version: "29", } cc_library_headers { @@ -153,6 +154,7 @@ cc_library_headers { export_header_lib_headers: [ "libnativewindow_headers", ], + min_sdk_version: "29", } // defaults to enable VALIDATE_REGIONS traces diff --git a/libs/vr/libpdx/Android.bp b/libs/vr/libpdx/Android.bp index 23a4224e05..24ba83048d 100644 --- a/libs/vr/libpdx/Android.bp +++ b/libs/vr/libpdx/Android.bp @@ -2,6 +2,7 @@ cc_library_headers { name: "libpdx_headers", export_include_dirs: ["private"], vendor_available: true, + min_sdk_version: "29", } cc_library_static { |