Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(267)

Unified Diff: gpu/khronos_glcts_support/khronos_glcts_cts.gyp

Issue 615063004: gpu/khronos_glcts_support: WA suppress compile-time warnings on linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gpu/khronos_glcts_support/khronos_glcts.gypi ('k') | gpu/khronos_glcts_support/khronos_glcts_framework.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/khronos_glcts_support/khronos_glcts_cts.gyp
diff --git a/gpu/khronos_glcts_support/khronos_glcts_cts.gyp b/gpu/khronos_glcts_support/khronos_glcts_cts.gyp
index 6e00afcd148d5c363f60e66be64a7ea8dc92f517..560deec56e906e43f392dfba5dd55c0e80942f39 100644
--- a/gpu/khronos_glcts_support/khronos_glcts_cts.gyp
+++ b/gpu/khronos_glcts_support/khronos_glcts_cts.gyp
@@ -10,6 +10,18 @@
{
'target_name': 'glcts_common',
'type': 'static_library',
+ 'conditions': [
+ ['OS=="linux"', {
+ 'cflags_cc': [
+ # WA: Suppress "implicit conversion turns string literal into
+ # bool" compile warning from glcShaderIndexingTests.cpp,
+ # glcShaderLibraryCase.cpp and glcShaderLoopTests.cpp during
+ # Debug build
+ # TODO(uartie) fix.
+ '-Wno-string-conversion',
+ ],
+ }],
+ ],
'dependencies': [
'<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:delibs',
'<(DEPTH)/gpu/khronos_glcts_support/khronos_glcts_framework.gyp:tcutil',
« no previous file with comments | « gpu/khronos_glcts_support/khronos_glcts.gypi ('k') | gpu/khronos_glcts_support/khronos_glcts_framework.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698