summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorsgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-17 20:21:20 +0000
committersgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-17 20:21:20 +0000
commitf12b0d4456dbf46e7a3f84d00a1928cab46c31c1 (patch)
tree7feb2a8b63e706da9f4fcfc3a5e916aa4c34c0f1 /build
parentb8430726aee195e69451e031b47e91a9514b0965 (diff)
downloadchromium_src-f12b0d4456dbf46e7a3f84d00a1928cab46c31c1.zip
chromium_src-f12b0d4456dbf46e7a3f84d00a1928cab46c31c1.tar.gz
chromium_src-f12b0d4456dbf46e7a3f84d00a1928cab46c31c1.tar.bz2
Suppress warnings in the new SCons version about an obscure
possible Windows race condition (file handles being held open an indeterminate amount of time after being closed in other threads). R: mpcomplete Review URL: http://codereview.chromium.org/2940 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2325 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r--build/SConscript.main3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/SConscript.main b/build/SConscript.main
index 1aa9299..25b8fec 100644
--- a/build/SConscript.main
+++ b/build/SConscript.main
@@ -14,7 +14,8 @@ elif p == 'name':
Progress('$TARGET\r', overwrite=True, file=open('con', 'w'))
-SetOption('warn', ['no-missing-sconscript'] + GetOption('warn'))
+default_warnings = ['no-missing-sconscript', 'no-no-parallel-support']
+SetOption('warn', default_warnings + GetOption('warn'))
load = ARGUMENTS.get('LOAD')