diff options
author | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-17 20:21:20 +0000 |
---|---|---|
committer | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-17 20:21:20 +0000 |
commit | f12b0d4456dbf46e7a3f84d00a1928cab46c31c1 (patch) | |
tree | 7feb2a8b63e706da9f4fcfc3a5e916aa4c34c0f1 /build | |
parent | b8430726aee195e69451e031b47e91a9514b0965 (diff) | |
download | chromium_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.main | 3 |
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') |