diff options
| author | Chih-Hung Hsieh <chh@google.com> | 2017-09-29 20:54:05 +0000 |
|---|---|---|
| committer | android-build-merger <android-build-merger@google.com> | 2017-09-29 20:54:05 +0000 |
| commit | 344ea259afe60d798365adf1563ddc7c62876521 (patch) | |
| tree | db762cc6b8fc8d71f3007abd4b827f1179a7f4ae | |
| parent | 7ad9dd6f71c14f6e863780bf6ea887f6f1878512 (diff) | |
| parent | 2384f6bc0b61116bc567f8eaa914aa4d54341fbf (diff) | |
Merge "Use -Werror in external/sqlite" am: 0d42d6b303 am: 545d8fbaaf
am: 2384f6bc0b
Change-Id: I1340e18736d62abc49548c811f3c25173e37ab43
| -rw-r--r-- | android/Android.bp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/android/Android.bp b/android/Android.bp index d5a1312..9173a03 100644 --- a/android/Android.bp +++ b/android/Android.bp @@ -2,7 +2,13 @@ cc_library_static { name: "libsqlite3_android", vendor_available: true, host_supported: true, - cflags: ["-DSQLITE_ENABLE_ICU"], + cflags: [ + "-DSQLITE_ENABLE_ICU", + "-Wall", + "-Werror", + "-Wno-unused-function", + "-Wno-unused-variable", + ], srcs: [ "PhoneNumberUtils.cpp", "OldPhoneNumberUtils.cpp", |
