The goal is to make the ClangCompile buildstep in the Housekeeping bot turn red if there is a warning.

Review URL: https://codereview.appspot.com/6868055

git-svn-id: http://skia.googlecode.com/svn/trunk@6674 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
rmistry@google.com 2012-12-05 14:56:08 +00:00
parent 8958dc949e
commit 7cdea64233
2 changed files with 14 additions and 0 deletions

View File

@ -125,6 +125,11 @@
'-Wno-c++11-extensions'
],
'conditions' : [
['skia_warnings_as_errors == 1', {
'cflags': [
'-Werror',
],
}],
['skia_arch_width == 64', {
'cflags': [
'-m64',
@ -290,6 +295,11 @@
'<(android_base)/toolchains/<(android_toolchain)/sysroot/usr/include',
],
'conditions': [
[ 'skia_warnings_as_errors == 1', {
'cflags': [
'-Werror',
],
}],
[ 'skia_profile_enabled == 1', {
'cflags': ['-g', '-fno-omit-frame-pointer', '-marm', '-mapcs'],
}],

View File

@ -87,6 +87,9 @@
'skia_gpu%': 1,
'skia_osx_sdkroot%': 'macosx',
'skia_profile_enabled%': 0,
# Note: This is currently only turned on for linux and android.
# TODO: Turn on for Win and Mac as well.
'skia_warnings_as_errors%': 0,
},
# Re-define all variables defined within the level-2 'variables' dict,
@ -106,6 +109,7 @@
'skia_gpu%': '<(skia_gpu)',
'skia_osx_sdkroot%': '<(skia_osx_sdkroot)',
'skia_profile_enabled%': '<(skia_profile_enabled)',
'skia_warnings_as_errors%': '<(skia_warnings_as_errors)',
'skia_static_initializers%': '<(skia_static_initializers)',
'ios_sdk_version%': '6.0',