aboutsummaryrefslogtreecommitdiff
path: root/libwebm
diff options
context:
space:
mode:
authorJooyung Han <jooyung@google.com>2020-04-16 18:48:29 +0900
committerJooyung Han <jooyung@google.com>2020-04-16 18:48:29 +0900
commit4e825b97f28fae429d999666301400916e312db6 (patch)
tree85892fb5b5c18bd8a39ab4e4a1bd456379ca549d /libwebm
parent1b59bcbece664c5f52df1d347a5739617abab16b (diff)
downloadlibvpx-4e825b97f28fae429d999666301400916e312db6.tar.gz
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: Iadf898297c1ada784a65099bdf96c944833cdb09
Diffstat (limited to 'libwebm')
-rw-r--r--libwebm/Android.bp6
1 files changed, 5 insertions, 1 deletions
diff --git a/libwebm/Android.bp b/libwebm/Android.bp
index 0beefc832..6141b100f 100644
--- a/libwebm/Android.bp
+++ b/libwebm/Android.bp
@@ -1,10 +1,14 @@
cc_library_static {
name: "libwebm",
srcs: ["mkvparser/mkvparser.cc"],
- cflags: ["-Wall", "-Werror"],
+ cflags: [
+ "-Wall",
+ "-Werror",
+ ],
export_include_dirs: ["."],
sanitize: {
// Enable CFI if this becomes a shared library.
// cfi: true,
},
+ min_sdk_version: "29",
}