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

Unified Diff: gyp/common_conditions.gypi

Issue 23038014: Add skia_clang_build gyp define, add -Wstring-conversion flag (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 4 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 | « no previous file | gyp/common_variables.gypi » ('j') | gyp/common_variables.gypi » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gyp/common_conditions.gypi
===================================================================
--- gyp/common_conditions.gypi (revision 10839)
+++ gyp/common_conditions.gypi (working copy)
@@ -221,7 +221,7 @@
'-Wextra',
# suppressions below here were added for clang
'-Wno-unused-parameter',
- '-Wno-c++11-extensions'
+ '-Wno-c++11-extensions',
],
'conditions' : [
[ 'skia_shared_lib', {
@@ -282,6 +282,11 @@
'-fsanitize=address',
],
}],
+ [ 'skia_clang_build', {
borenet 2013/08/21 14:00:58 It's kind of unfortunate that we have to place thi
+ 'cflags': [
+ '-Wstring-conversion',
djsollen 2013/08/21 14:09:37 This will break our bots if we check it in. Do we
robertphillips 2013/08/21 14:12:51 Do you mean because all the !""'s outside of what
borenet 2013/08/21 14:16:01 This doesn't change the behavior of our bots, sinc
+ ],
+ }],
],
},
],
« no previous file with comments | « no previous file | gyp/common_variables.gypi » ('j') | gyp/common_variables.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698