diff options
author | Nico Weber <thakis@chromium.org> | 2016-01-01 18:33:04 -0500 |
---|---|---|
committer | Nico Weber <thakis@chromium.org> | 2016-01-01 23:34:58 +0000 |
commit | 72b857512da7f6b67cc7f303c552f7371965bf47 (patch) | |
tree | 15cbd12082b1a29002b88f75bbee76e5fb3a839b | |
parent | 59f419c5b24f891279c78b19bc6963c6762d69ef (diff) | |
download | chromium_src-72b857512da7f6b67cc7f303c552f7371965bf47.zip chromium_src-72b857512da7f6b67cc7f303c552f7371965bf47.tar.gz chromium_src-72b857512da7f6b67cc7f303c552f7371965bf47.tar.bz2 |
Try to let gles2_conform tests build with -Wall.
This is a bit difficult since these tests have no trybots and can only
be tested locally with a src-internal checkout, which I currently don't
have access to.
BUG=573250,573608
R=geofflang@chromium.org
TBR=piman
Review URL: https://codereview.chromium.org/1553963002 .
Cr-Commit-Position: refs/heads/master@{#367270}
-rw-r--r-- | gpu/gles2_conform_support/gles2_conform_test.gyp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gpu/gles2_conform_support/gles2_conform_test.gyp b/gpu/gles2_conform_support/gles2_conform_test.gyp index 0571dd8..5793559 100644 --- a/gpu/gles2_conform_support/gles2_conform_test.gyp +++ b/gpu/gles2_conform_support/gles2_conform_test.gyp @@ -13,6 +13,12 @@ '<(SHARED_INTERMEDIATE_DIR)/gles2_conform_test_embedded_data', '../../third_party/gles2_conform/GTF_ES/glsl/GTF/Source', ], + 'variables': { + 'clang_warning_flags': [ + # GTFVecBase.h contains static no-inline functions in a header :-/ + '-Wno-unused-function', + ], + }, }, 'targets': [ { |