diff options
author | Chih-Hung Hsieh <chh@google.com> | 2017-08-09 16:23:07 -0700 |
---|---|---|
committer | Chih-Hung Hsieh <chh@google.com> | 2017-08-09 16:23:07 -0700 |
commit | b7ae0d8484012e3c2b8bf83be78d2b8d4c88ceaa (patch) | |
tree | 20e51a26c9650c0cb205b5b0edf9f026f2603a69 /Android.mk | |
parent | fde96926aae856c9319706617b4912e8e45d206e (diff) | |
download | VK-GL-CTS-b7ae0d8484012e3c2b8bf83be78d2b8d4c88ceaa.tar.gz VK-GL-CTS-b7ae0d8484012e3c2b8bf83be78d2b8d4c88ceaa.tar.bz2 VK-GL-CTS-b7ae0d8484012e3c2b8bf83be78d2b8d4c88ceaa.zip |
Suppress non-critical warnings in external/deqp.
* We should enable those warnings after fixing the upstream source code.
Bug: 64487164
Test: build with WITH_TIDY=1
Change-Id: Ie4961d23b8f57e8d3a3ada0e64df82ed18dd366f
Diffstat (limited to 'Android.mk')
-rw-r--r-- | Android.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk index c0dd7eddb..0c49cdd78 100644 --- a/Android.mk +++ b/Android.mk @@ -1038,6 +1038,11 @@ LOCAL_CPPFLAGS += -Wno-non-virtual-dtor -Wno-delete-non-virtual-dtor LOCAL_NDK_STL_VARIANT := gnustl_static LOCAL_RTTI_FLAG := -frtti -fexceptions LOCAL_MULTILIB := both +LOCAL_TIDY_CHECKS := \ + -google-build-explicit-make-pair, \ + -google-global-names-in-headers, \ + -google-runtime-member-string-references, \ + -google-runtime-operator, \ include $(BUILD_SHARED_LIBRARY) |