0

Initial cleanups en route to coalescing the get-it-built cut-and-paste from various SConscripts into readable and maintainable shape. To wit:

* Put the near-universal settings of /DCERT_CHAIN_PARA_HAS_EXTRA_FIELDS, /DWIN32_LEAN_AND_MEAN, /wd4503 and /wd4819 in the base construction environment.
* Sort various unsorted source file lists.
* Fix indentation and quoting for consistency in a couple SConscript files that escaped previous dragnets.
* Eliminate two left-over uses of Split() for input file lists.
* Give the devenv invocation to build v8_shell.exe the full path to the relevant .vcproj file.
* Add /nologo to the base LINKFLAGS setting.
* Remove various CPPPATH and other settings that have been hanging around commented out from the Visual Studio build (in case we needed them, which we evidently don't).
* Get rid of unnecessary env.File() and env.Dir() calls in various settings (esp. CPPPATH) and source file lists.
* Add copyright notice to an overlooked SConscript file.
* Clean up version.bat invocation.
TBR: bradnelson

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@174 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
sgk@google.com
2008-07-31 07:25:19 +00:00
parent 1920e82328
commit 55329d53c0
54 changed files with 435 additions and 720 deletions
base
breakpad
build
chrome
SConscriptSConscript.unit_tests
app
browser
common
installer
mini_installer
setup
util
plugin
renderer
test
interactive_ui
mini_installer_test
page_cycler
plugin
reliability
selenium
startup
tab_switching
third_party
hunspell
sqlite
tools
test
image_diff
views
net
SConscript
tools
tld_cleanup
sandbox/src
skia
third_party
webkit
SConscriptSConscript.javascriptcore_pcreSConscript.port
activex_shim
build
JavaScriptCore
V8Bindings
WebCore
default_plugin
glue
tools
npapi_layout_test_plugin
test_shell

@ -40,16 +40,10 @@ env.Prepend(
], ],
CPPDEFINES = [ CPPDEFINES = [
'U_STATIC_IMPLEMENTATION', 'U_STATIC_IMPLEMENTATION',
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
'WIN32_LEAN_AND_MEAN',
], ],
CCFLAGS = [ CCFLAGS = [
'/TP', '/TP',
'/Wp64', '/Wp64',
'/wd4503',
'/wd4819',
], ],
) )
@ -139,16 +133,11 @@ env_tests.Prepend(
'_WIN32_WINNT=0x0600', '_WIN32_WINNT=0x0600',
'WINVER=0x0600', 'WINVER=0x0600',
'_HAS_EXCEPTIONS=0', '_HAS_EXCEPTIONS=0',
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
'WIN32_LEAN_AND_MEAN',
], ],
CCFLAGS = [ CCFLAGS = [
'/TP',
'/WX', '/WX',
'/Wp64', '/Wp64',
'/TP',
'/wd4503',
'/wd4819',
], ],
LINKFLAGS = [ LINKFLAGS = [
'/MANIFEST', '/MANIFEST',

@ -46,17 +46,10 @@ env.Prepend(
'PNG_USER_CONFIG', 'PNG_USER_CONFIG',
'CHROME_PNG_WRITE_SUPPORT', 'CHROME_PNG_WRITE_SUPPORT',
'U_STATIC_IMPLEMENTATION', 'U_STATIC_IMPLEMENTATION',
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
'WIN32_LEAN_AND_MEAN',
], ],
CCFLAGS = [ CCFLAGS = [
'/TP', '/TP',
'/Wp64',
'/WX', '/WX',
'/wd4503',
'/wd4819',
], ],
) )

@ -41,10 +41,7 @@ env.Prepend(
env.Append( env.Append(
CCFLAGS = [ CCFLAGS = [
'/TP', '/TP',
'/wd4800', '/wd4800',
'/wd4503',
'/wd4819',
], ],
) )

@ -42,17 +42,10 @@ env.Prepend(
env.Append( env.Append(
CPPDEFINES = [ CPPDEFINES = [
'U_STATIC_IMPLEMENTATION', 'U_STATIC_IMPLEMENTATION',
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
'WIN32_LEAN_AND_MEAN',
], ],
CCFLAGS = [ CCFLAGS = [
'/TP', '/TP',
'/Wp64',
'/wd4503',
'/wd4819',
], ],
) )

@ -126,6 +126,8 @@ env = Environment(
], ],
CCFLAGS = [ CCFLAGS = [
'/nologo',
'/Od', # no optimization '/Od', # no optimization
'/RTC1', '/RTC1',
@ -137,8 +139,10 @@ env = Environment(
'/Z7', '/Z7',
'/nologo',
'/errorReport:prompt', '/errorReport:prompt',
'/wd4503',
'/wd4819',
], ],
CPPDEFINES = [ CPPDEFINES = [
@ -158,6 +162,9 @@ env = Environment(
'NOMINMAX', 'NOMINMAX',
'_UNICODE', '_UNICODE',
'UNICODE', 'UNICODE',
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
'WIN32_LEAN_AND_MEAN',
], ],
CPPPATH = [ CPPPATH = [
@ -173,6 +180,7 @@ env = Environment(
], ],
LINKFLAGS = [ LINKFLAGS = [
'/nologo',
'/DEBUG', '/DEBUG',
], ],
) )

@ -65,7 +65,7 @@ env.Alias('webkit', i)
v8_shell = env.Command(v8_exe, v8_shell = env.Command(v8_exe,
[], [],
'cd ..\\v8 && devenv /nologo v8.sln /build Debug v8_shell') 'cd ..\\v8 && devenv /nologo v8.sln /build Debug vcproj\\v8_shell.vcproj')
env.AlwaysBuild(v8_shell) env.AlwaysBuild(v8_shell)
i = env.Install('$TARGET_ROOT', v8_exe) i = env.Install('$TARGET_ROOT', v8_exe)

@ -42,9 +42,8 @@ install_targets = []
env.Prepend( env.Prepend(
CPPPATH = [ CPPPATH = [
Dir('app'), 'app',
#Dir('third_party/wtl/include'), '$CHROME_DIR/third_party/wtl/include',
Dir('#/../chrome/third_party/wtl/include'),
], ],
) )
@ -52,9 +51,7 @@ env.Prepend(
env_res.Append( env_res.Append(
CPPPATH = [ CPPPATH = [
'.', '.',
'#/../chrome/Debug/obj/chrome_dll',
'#/..', '#/..',
'#/../chrome/Debug/obj',
], ],
RCFLAGS = [ RCFLAGS = [
['/l', '0x409'], ['/l', '0x409'],
@ -90,9 +87,6 @@ env_dll.Prepend(
], ],
CPPDEFINES = [ CPPDEFINES = [
'U_STATIC_IMPLEMENTATION', 'U_STATIC_IMPLEMENTATION',
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
'WIN32_LEAN_AND_MEAN',
'PNG_USER_CONFIG', 'PNG_USER_CONFIG',
'CHROME_PNG_WRITE_SUPPORT', 'CHROME_PNG_WRITE_SUPPORT',
'LIBXSLT_STATIC', 'LIBXSLT_STATIC',
@ -101,29 +95,20 @@ env_dll.Prepend(
], ],
CCFLAGS = [ CCFLAGS = [
'/TP', '/TP',
'/Wp64', '/Wp64',
'/wd4503',
'/wd4819',
], ],
) )
env_dll.Append( env_dll.Append(
CPPPATH = [ CPPPATH = [
#/I '../chrome/Debug/webkit' '$CHROME_DIR/app',
#/I '../third_party/webkit/out' '$LIBPNG_DIR',
'$SKIA_DIR/include',
Dir('#../chrome/app'), '$SKIA_DIR/include/corecg',
#Dir('#../chrome/Debug/obj/generated_resources'), '$SKIA_DIR/platform',
Dir('#../chrome/Debug/obj/localized_strings'), '$LIBXSL_DIR',
Dir('#../third_party/libpng'), '$LIBXML_DIR/include',
Dir('#../skia/include'), '$BREAKPAD_DIR/src',
Dir('#../skia/include/corecg'),
Dir('#../skia/platform'),
Dir('#../third_party/libxslt'),
Dir('#../third_party/libxml/include'),
Dir('#../breakpad/src'),
], ],
LIBS = [ LIBS = [
'DelayImp.lib', 'DelayImp.lib',
@ -148,46 +133,10 @@ env_dll.Append(
'uuid.lib', 'uuid.lib',
'version.lib', 'version.lib',
'wininet.lib', 'wininet.lib',
'wininet.lib',
'winmm.lib', 'winmm.lib',
'winspool.lib', 'winspool.lib',
'ws2_32.lib', 'ws2_32.lib',
'wsock32.lib', 'wsock32.lib',
env.File('$BASE_DIR/base.lib'),
env.File('$BASE_DIR/gfx/base_gfx.lib'),
env.File('$BREAKPAD_DIR/breakpad_handler.lib'),
env.File('browser/browser.lib'),
env.File('browser/debugger/debugger.lib'),
env.File('common/common.lib'),
env.File('installer/util/util.lib'),
env.File('libjscre.lib'),
env.File('plugin/plugin.lib'),
env.File('renderer/renderer.lib'),
env.File('third_party/hunspell/hunspell.lib'),
env.File('third_party/sqlite/sqlite.lib'),
env.File('views/views.lib'),
env.File('$NET_DIR/net.lib'),
env.File('$SKIA_DIR/skia.lib'),
env.File('$BZIP2_DIR/bzip2.lib'),
env.File('$ICU38_DIR/icuuc.lib'),
env.File('$LIBJPEG_DIR/libjpeg.lib'),
env.File('$LIBPNG_DIR/libpng.lib'),
env.File('$LIBXML_DIR/libxml.lib'),
env.File('$LIBXSLT_DIR/libxslt.lib'),
env.File('$MODP_B64_DIR/modp_b64.lib'),
env.File('$ZLIB_DIR/zlib.lib'),
env.File('$V8_DIR/v8.lib'),
env.File('$V8_DIR/snapshot-empty.obj'),
env.File('$WEBKIT_DIR/activex_shim/activex_shim.lib'),
env.File('$WEBKIT_DIR/build/JavaScriptCore/WTF.lib'),
env.File('$WEBKIT_DIR/build/V8Bindings/V8Bindings.lib'),
env.File('$WEBKIT_DIR/build/WebCore/WebCore.lib'),
env.File('$WEBKIT_DIR/default_plugin/default_plugin.lib'),
env.File('$WEBKIT_DIR/glue/Glue.lib'),
env.File('$GOOGLEURL_DIR/googleurl.lib'),
env.File('$WEBKIT_DIR/JavaScriptCore_pcre.lib'),
env.File('$WEBKIT_DIR/Port.lib'),
], ],
LINKFLAGS = [ LINKFLAGS = [
'/INCREMENTAL', '/INCREMENTAL',
@ -229,10 +178,48 @@ input_files = [
'app/chrome_main.cc', 'app/chrome_main.cc',
] ]
libs = [
'$BASE_DIR/base.lib',
'$BASE_DIR/gfx/base_gfx.lib',
'$BREAKPAD_DIR/breakpad_handler.lib',
'browser/browser.lib',
'browser/debugger/debugger.lib',
'common/common.lib',
'installer/util/util.lib',
'libjscre.lib',
'plugin/plugin.lib',
'renderer/renderer.lib',
'third_party/hunspell/hunspell.lib',
'third_party/sqlite/sqlite.lib',
'views/views.lib',
'$NET_DIR/net.lib',
'$SKIA_DIR/skia.lib',
'$BZIP2_DIR/bzip2.lib',
'$ICU38_DIR/icuuc.lib',
'$LIBJPEG_DIR/libjpeg.lib',
'$LIBPNG_DIR/libpng.lib',
'$LIBXML_DIR/libxml.lib',
'$LIBXSLT_DIR/libxslt.lib',
'$MODP_B64_DIR/modp_b64.lib',
'$ZLIB_DIR/zlib.lib',
'$V8_DIR/v8.lib',
'$V8_DIR/snapshot-empty.obj',
'$WEBKIT_DIR/activex_shim/activex_shim.lib',
'$WEBKIT_DIR/build/JavaScriptCore/WTF.lib',
'$WEBKIT_DIR/build/V8Bindings/V8Bindings.lib',
'$WEBKIT_DIR/build/WebCore/WebCore.lib',
'$WEBKIT_DIR/default_plugin/default_plugin.lib',
'$WEBKIT_DIR/glue/Glue.lib',
'$GOOGLEURL_DIR/googleurl.lib',
'$WEBKIT_DIR/JavaScriptCore_pcre.lib',
'$WEBKIT_DIR/Port.lib',
]
dll_targets = env_dll.SharedLibrary(['chrome', dll_targets = env_dll.SharedLibrary(['chrome',
'chrome_dll.pdb', 'chrome_dll.pdb',
'chrome_dll.lib'], 'chrome_dll.lib'],
dll_resources + input_files) dll_resources + input_files + libs)
install_targets.extend(dll_targets) install_targets.extend(dll_targets)
@ -252,9 +239,9 @@ for g in [ g for g in generated if str(g).endswith('.rc') ]:
env_version = env.Clone( env_version = env.Clone(
VERSION_BAT = File('#/../chrome/tools/build/win/version.bat'), VERSION_BAT = env.File('$CHROME_DIR/tools/build/win/version.bat'),
CHROMEDIR = Dir('#/../chrome'), CHROMEDIR = env.Dir('$CHROME_DIR'),
PWD = Dir('.'), PWD = env.Dir('.'),
) )
env_version['ENV']['PROGRAMFILES'] = os.environ['PROGRAMFILES'] env_version['ENV']['PROGRAMFILES'] = os.environ['PROGRAMFILES']
@ -266,16 +253,15 @@ env_version['ENV']['PATH'] = os.environ['PATH']
chrome_exe_version_rc = env_version.Command( chrome_exe_version_rc = env_version.Command(
'chrome_exe_version.rc', 'chrome_exe_version.rc',
['app/chrome_exe_version.rc.version', ['app/chrome_exe_version.rc.version',
'$CHROMEDIR/VERSION', '$CHROME_DIR/VERSION',
'$CHROMEDIR/BRANDING'], '$CHROME_DIR/BRANDING'],
'$VERSION_BAT $SOURCE $CHROMEDIR $PWD $TARGET') '$VERSION_BAT $SOURCE $CHROMEDIR $PWD $TARGET')
chrome_dll_version_rc = env_version.Command( chrome_dll_version_rc = env_version.Command(
'chrome_dll_version.rc', 'chrome_dll_version.rc',
[ ['app/chrome_dll_version.rc.version',
'app/chrome_dll_version.rc.version', '$CHROME_DIR/VERSION',
'$CHROMEDIR/VERSION', '$CHROME_DIR/BRANDING',
'$CHROMEDIR/BRANDING',
], ],
'$VERSION_BAT $SOURCE $CHROMEDIR $PWD $TARGET') '$VERSION_BAT $SOURCE $CHROMEDIR $PWD $TARGET')
@ -296,11 +282,7 @@ env_exe = env.Clone()
env_exe.Prepend( env_exe.Prepend(
CPPPATH = [ CPPPATH = [
'..', '..',
Dir('#../breakpad/src'), '$BREAKPAD_DIR/src',
],
CPPDEFINES = [
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
'WIN32_LEAN_AND_MEAN',
], ],
) )
env_exe.Append( env_exe.Append(
@ -342,13 +324,6 @@ env_exe.Append(
'wininet.lib', 'wininet.lib',
'winspool.lib', 'winspool.lib',
'ws2_32.lib', 'ws2_32.lib',
env.File('common/common.lib'),
env.File('$CHROME_DIR/chrome_dll.lib'),
env.File('$BREAKPAD_DIR/breakpad_handler.lib'),
env.File('$SANDBOX_DIR/src/sandbox.lib'),
env.File('$BASE_DIR/base.lib'),
env.File('$ICU38_DIR/icuuc.lib'),
], ],
) )
@ -362,6 +337,13 @@ chrome_exe = env_exe.Program(
'app/main.cc', 'app/main.cc',
'app/google_update_client.cc', 'app/google_update_client.cc',
'app/google_update_settings.cc', 'app/google_update_settings.cc',
'common/common.lib',
'$CHROME_DIR/chrome_dll.lib',
'$BREAKPAD_DIR/breakpad_handler.lib',
'$SANDBOX_DIR/src/sandbox.lib',
'$BASE_DIR/base.lib',
'$ICU38_DIR/icuuc.lib',
] ]
) )
@ -396,8 +378,6 @@ env_snapshot.Prepend(
'/wd4099', '/wd4099',
'/wd4355', '/wd4355',
'/wd4800', '/wd4800',
'/wd4503',
'/wd4819',
], ],
) )
@ -410,7 +390,7 @@ env_snapshot.Command('snapshot.cc', '#/../v8/bin/debug/mksnapshot.exe',
env_flat = env.Clone( env_flat = env.Clone(
BROWSER_RESOURCES = Dir('browser_resources'), BROWSER_RESOURCES = Dir('browser_resources'),
HTML_INLINE = File('#/../chrome/tools/build/win/html_inline.py'), HTML_INLINE = File('$CHROME_DIR/tools/build/win/html_inline.py'),
FLATTEN_HTML_COM = '$PYTHON $HTML_INLINE $SOURCE $TARGET', FLATTEN_HTML_COM = '$PYTHON $HTML_INLINE $SOURCE $TARGET',
) )

@ -101,9 +101,6 @@ env_test.Prepend(
], ],
) )
#/MANIFESTFILE:"C:\src\trunk-vs\chrome\Debug\obj\unit_tests\unit_tests.exe.intermediate.manifest"
#/PDB:"c:\src\trunk-vs\chrome\Debug\unit_tests.pdb"
libs = [ libs = [
'snapshotv8.lib', 'snapshotv8.lib',
@ -144,13 +141,6 @@ libs = [
'$ZLIB_DIR/zlib.lib', '$ZLIB_DIR/zlib.lib',
] ]
#/Yu"precompiled_wtl.h"
#/Fp"C:\src\trunk-vs\chrome\Debug\obj\unit_tests\precompiled_wtl.pch"
#/Fo"C:\src\trunk-vs\chrome\Debug\obj\unit_tests\\"
#/Fd"C:\src\trunk-vs\chrome\Debug\obj\unit_tests\vc80.pdb"
#/FI
#"precompiled_wtl.h"
unit_test_files = [ unit_test_files = [
'browser/autocomplete/autocomplete_unittest.cc', 'browser/autocomplete/autocomplete_unittest.cc',
'browser/autocomplete/history_contents_provider_unittest.cc', 'browser/autocomplete/history_contents_provider_unittest.cc',

@ -33,58 +33,56 @@ env = env.Clone()
env_res = env_res.Clone() env_res = env_res.Clone()
env_res.Append( env_res.Append(
CPPPATH = [ CPPPATH = [
".", '.',
"#/../chrome/Debug/obj/chrome_dll", '#/..',
"#/..", ],
"#/../chrome/Debug/obj", RCFLAGS = [
], ['/l', '0x409'],
RCFLAGS = [ ],
["/l", "0x409"],
],
) )
res = env_res.RES("theme_resources.rc") res = env_res.RES('theme_resources.rc')
env.Append( env.Append(
LINKFLAGS = [ LINKFLAGS = [
"/INCREMENTAL:NO", '/INCREMENTAL:NO',
'/DELAYLOAD:"dwmapi.dll', '/DELAYLOAD:"dwmapi.dll"',
'/DELAYLOAD:"uxtheme.dll', '/DELAYLOAD:"uxtheme.dll"',
"/NOENTRY", '/NOENTRY',
'/BASE:"0x3CE00000"', '/BASE:"0x3CE00000"',
"/MACHINE:X86", '/MACHINE:X86',
"/FIXED:No", '/FIXED:No',
"/safeseh", '/safeseh',
"/dynamicbase", '/dynamicbase',
"/ignore:4199", '/ignore:4199',
"/nxcompat", '/nxcompat',
], ],
LIBS = [ LIBS = [
"wininet.lib", 'wininet.lib',
"version.lib", 'version.lib',
"msimg32.lib", 'msimg32.lib',
"ws2_32.lib", 'ws2_32.lib',
"usp10.lib", 'usp10.lib',
"psapi.lib", 'psapi.lib',
"kernel32.lib", 'kernel32.lib',
"user32.lib", 'user32.lib',
"gdi32.lib", 'gdi32.lib',
"winspool.lib", 'winspool.lib',
"comdlg32.lib", 'comdlg32.lib',
"advapi32.lib", 'advapi32.lib',
"shell32.lib", 'shell32.lib',
"ole32.lib", 'ole32.lib',
"oleaut32.lib", 'oleaut32.lib',
"uuid.lib", 'uuid.lib',
"odbc32.lib", 'odbc32.lib',
"odbccp32.lib", 'odbccp32.lib',
"DelayImp.lib", 'DelayImp.lib',
], ],
) )
themes_default = env.SharedLibrary("$CHROME_DIR/themes/default", res) themes_default = env.SharedLibrary("$CHROME_DIR/themes/default", res)

@ -32,27 +32,15 @@ Import('env')
env = env.Clone() env = env.Clone()
#/Yu"precompiled_wtl.h"
#/Fp"C:\src\trunk\chrome\Debug\obj\browser\precompiled_wtl.pch"
#/Fo"C:\src\trunk\chrome\Debug\obj\browser\\"
#/Fd"C:\src\trunk\chrome\Debug\obj\browser\vc80.pdb"
#/W3
#/WX
#/FI "precompiled_wtl.h"
env.Prepend( env.Prepend(
CPPPATH = [ CPPPATH = [
env.Dir('../app/resources'), '$CHROME_DIR/app/resources',
env.Dir('$OBJ_ROOT/google_update'), #'$OBJ_ROOT/google_update',
env.Dir('#/tools/build/win'), '#/tools/build/win',
env.Dir('#/..'), '#/..',
], ],
CPPDEFINES = [ CPPDEFINES = [
'U_STATIC_IMPLEMENTATION', 'U_STATIC_IMPLEMENTATION',
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
'WIN32_LEAN_AND_MEAN',
'USE_HUNSPELL', 'USE_HUNSPELL',
'HUNSPELL_CHROME_CLIENT', 'HUNSPELL_CHROME_CLIENT',
'LIBXML_STATIC', 'LIBXML_STATIC',
@ -61,39 +49,29 @@ env.Prepend(
], ],
CCFLAGS = [ CCFLAGS = [
'/TP', '/TP',
'/Wp64',
'/wd4503',
'/wd4819',
], ],
) )
env.Append( env.Append(
CPPPATH = [ CPPPATH = [
'$GTEST_DIR/include', '$GTEST_DIR/include',
#/I "../chrome/Debug/webkit"
#/I "../third_party/webkit/out"
env.Dir("#../google_update"), '$GOOGLE_UPDATE_DIR',
env.Dir("#../chrome/third_party/hunspell/src/hunspell"), '$CHROME_DIR/third_party/hunspell/src/hunspell',
env.Dir("#../chrome/third_party/wtl/include"), '$CHROME_DIR/third_party/wtl/include',
env.Dir("#../third_party/npapi"), '$NPAPI_DIR',
'$LIBXML_DIR/scons/include', '$LIBXML_DIR/scons/include',
'$LIBXML_DIR/include', '$LIBXML_DIR/include',
env.Dir("#../third_party/icu38/public/common"), '$ICU38_DIR/public/common',
env.Dir("#../third_party/icu38/public/i18n"), '$ICU38_DIR/public/i18n',
'$CHROME_DIR/app',
env.Dir("#../chrome/app"), '$WEBKIT_DIR/build/localized_strings',
'$ZLIB_DIR',
env.Dir("#../webkit/build/localized_strings"), '$SKIA_DIR/include',
'$SKIA_DIR/include/corecg',
env.Dir("#../third_party/zlib"), '$SKIA_DIR/platform',
env.Dir("#../skia/include"), '$LIBPNG_DIR',
env.Dir("#../skia/include/corecg"), '$BREAKPAD_DIR/src',
env.Dir("#../skia/platform"),
env.Dir("#../third_party/libpng"),
env.Dir("#../breakpad/src"),
], ],
) )
@ -400,5 +378,4 @@ input_files = [
env.StaticLibrary('browser', input_files) env.StaticLibrary('browser', input_files)
SConscript('debugger/SConscript', exports=['env']) SConscript('debugger/SConscript', exports=['env'])

@ -1,59 +1,76 @@
# Copyright 2008, Google Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following disclaimer
# in the documentation and/or other materials provided with the
# distribution.
# * Neither the name of Google Inc. nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Import('env') Import('env')
env = env.Clone() env = env.Clone()
env.Prepend( env.Prepend(
CPPPATH = [ CPPPATH = [
Dir("#/.."), '#/..',
], ],
CPPDEFINES = [ CPPDEFINES = [
"CERT_CHAIN_PARA_HAS_EXTRA_FIELDS", 'LIBXML_STATIC',
"WIN32_LEAN_AND_MEAN", 'U_STATIC_IMPLEMENTATION',
"LIBXML_STATIC", 'PNG_USER_CONFIG',
"U_STATIC_IMPLEMENTATION", 'CHROME_PNG_WRITE_SUPPORT',
"PNG_USER_CONFIG",
"CHROME_PNG_WRITE_SUPPORT",
], ],
CCFLAGS = [ CCFLAGS = [
'/TP', '/TP',
#'/Wp64',
'/wd4503',
'/wd4819',
], ],
) )
env.Append( env.Append(
CPPPATH = [ CPPPATH = [
#"C:\src\trunk\chrome\Debug\webkit" '$CHROME_DIR/third_party/wtl/include',
Dir("#/../chrome/third_party/webkit/out"), '$NPAPI_DIR',
'$LIBXML_DIR/include',
Dir("#/../chrome/third_party/wtl/include"), '$ICU38_DIR/public/common',
Dir("#/../third_party/npapi"), '$ICU38_DIR/public/i18n',
Dir("#/../third_party/libxml/include"), '$CHROME_DIR/app',
Dir("#/../third_party/icu38/public/common"), '$ZLIB_DIR',
Dir("#/../third_party/icu38/public/i18n"), '$SKIA_DIR/include',
Dir("#/../chrome/app"), #Dir("#/../chrome/generated_resources"), '$SKIA_DIR/include/corecg',
#Dir("Debug/obj/localized_strings"), '$SKIA_DIR/platform',
Dir("#/../third_party/zlib"), '$LIBPNG_DIR',
Dir("#/../skia/include"), '$BREAKPAD_DIR/src',
Dir("#/../skia/include/corecg"),
Dir("#/../skia/platform"),
Dir("#/../third_party/libpng"),
Dir("#/../breakpad/src"),
], ],
) )
input_files = [ input_files = [
"debugger_shell.cc", 'debugger_shell.cc',
"debugger_io_socket.cc", 'debugger_io_socket.cc',
"debugger_node.cc", 'debugger_node.cc',
"debugger_view.cc", 'debugger_view.cc',
"debugger_window.cc", 'debugger_window.cc',
"debugger_wrapper.cc", 'debugger_wrapper.cc',
] ]
env.StaticLibrary('debugger', input_files) env.StaticLibrary('debugger', input_files)

@ -33,22 +33,15 @@ env = env.Clone()
env.Prepend( env.Prepend(
CPPPATH = [ CPPPATH = [
env.Dir('../app/resources'), '$CHROME_DIR/app/resources',
env.Dir('#/tools/build/win'), '#/tools/build/win',
env.Dir('#/..'), '#/..',
], ],
CPPDEFINES = [ CPPDEFINES = [
'U_STATIC_IMPLEMENTATION', 'U_STATIC_IMPLEMENTATION',
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
'WIN32_LEAN_AND_MEAN',
], ],
CCFLAGS = [ CCFLAGS = [
'/TP', '/TP',
'/Wp64',
'/wd4503',
'/wd4819',
], ],
) )
@ -67,7 +60,7 @@ env.Append(
'$SKIA_DIR/platform', '$SKIA_DIR/platform',
'$LIBPNG_DIR', '$LIBPNG_DIR',
'$ZLIB_DIR', '$ZLIB_DIR',
env.Dir('#../breakpad/src'), '$BREAKPAD_DIR/src',
'$LIBJPEG_DIR', '$LIBJPEG_DIR',
'$ICU38_DIR/public/common', '$ICU38_DIR/public/common',
'$ICU38_DIR/public/i18n', '$ICU38_DIR/public/i18n',

@ -55,18 +55,8 @@ env.Prepend(
'$GTEST_DIR', '$GTEST_DIR',
'#/..', '#/..',
], ],
CPPDEFINES = [
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
'WIN32_LEAN_AND_MEAN',
],
CCFLAGS = [ CCFLAGS = [
'/TP', '/TP',
'/Wp64',
'/wd4503',
'/wd4819',
'/GS-', # because we link with /NODEFAULTLIB '/GS-', # because we link with /NODEFAULTLIB
], ],
LINKFLAGS = [ LINKFLAGS = [
@ -145,84 +135,22 @@ env.Depends(packed, '$TARGET_ROOT/setup.exe')
env_version = env.Clone( env_version = env.Clone(
VERSION_BAT = File('#/../chrome/tools/build/win/version.bat'), VERSION_BAT = env.File('$CHROME_DIR/tools/build/win/version.bat'),
CHROMEDIR = Dir('#/../chrome'), CHROMEDIR = env.Dir('$CHROME_DIR'),
PWD = Dir('.'), PWD = env.Dir('.'),
) )
env_version.Command('mini_installer_exe_version.rc', env_version.Command('mini_installer_exe_version.rc',
['mini_installer_exe_version.rc.version', ['mini_installer_exe_version.rc.version',
'$CHROMEDIR/VERSION', '$CHROME_DIR/VERSION',
'$CHROMEDIR/BRANDING'], '$CHROME_DIR/BRANDING'
],
"$VERSION_BAT $SOURCE $CHROMEDIR $PWD $TARGET") "$VERSION_BAT $SOURCE $CHROMEDIR $PWD $TARGET")
#/Od
#/I
#"C:\src\trunk-vs\chrome\..\testing\gtest\include"
#/I
#"C:\src\trunk-vs\chrome\..\testing\gtest"
#/I
#"C:\src\trunk-vs\chrome\.."
#/I
#"C:\src\trunk-vs\chrome\third_party\wtl\include"
#/I
#"C:\src\trunk-vs\chrome\..\third_party\platformsdk_vista_6_0\files\Include"
#/I
#"C:\src\trunk-vs\chrome\..\third_party\platformsdk_vista_6_0\files\VC\INCLUDE"
#/I
#"C:\Program
#Files\Microsoft
#Visual
#Studio
#8\\VC\atlmfc\include"
#/D
#"UNIT_TEST"
#/D
#"_DEBUG"
#/D
#"_WIN32_WINNT=0x0600"
#/D
#"WINVER=0x0600"
#/D
#"WIN32"
#/D
#"_WINDOWS"
#/D
#"_HAS_EXCEPTIONS=0"
#/D
#"NOMINMAX"
#/D
#"_CRT_RAND_S"
#/D
#"CERT_CHAIN_PARA_HAS_EXTRA_FIELDS"
#/D
#"WIN32_LEAN_AND_MEAN"
#/D
#"_UNICODE"
#/D
#"UNICODE"
#/FD
#/RTC1
#/MTd
#/Gy
#/GR-
#/Fo"C:\src\trunk-vs\chrome\Debug\obj\installer_unittests\\"
#/Fd"C:\src\trunk-vs\chrome\Debug\obj\installer_unittests\vc80.pdb"
#/W3
#/WX
#/c
#/Wp64
#/Zi
#/TP
#/wd4503
#/wd4819
env_test.Prepend( env_test.Prepend(
CPPDEFINES = [ CPPDEFINES = [
'UNIT_TEST', 'UNIT_TEST',
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
'WIN32_LEAN_AND_MEAN',
], ],
CPPPATH = [ CPPPATH = [
'$GTEST_DIR/include', '$GTEST_DIR/include',

@ -134,9 +134,9 @@ env.Alias('chrome', i)
env_version = env.Clone( env_version = env.Clone(
VERSION_BAT = File('#/../chrome/tools/build/win/version.bat'), VERSION_BAT = env.File('$CHROME_DIR/tools/build/win/version.bat'),
CHROMEDIR = Dir('#/../chrome'), CHROMEDIR = env.Dir('$CHROME_DIR'),
PWD = Dir('.'), PWD = env.Dir('.'),
) )
import os import os
@ -148,6 +148,7 @@ env_version['ENV']['PATH'] = os.environ['PATH']
setup_exe_version_rc = env_version.Command( setup_exe_version_rc = env_version.Command(
'setup_exe_version.rc', 'setup_exe_version.rc',
['setup_exe_version.rc.version', ['setup_exe_version.rc.version',
'$CHROMEDIR/VERSION', '$CHROME_DIR/VERSION',
'$CHROMEDIR/BRANDING'], '$CHROME_DIR/BRANDING'
],
'$VERSION_BAT $SOURCE $CHROMEDIR $PWD $TARGET') '$VERSION_BAT $SOURCE $CHROMEDIR $PWD $TARGET')

@ -34,23 +34,21 @@ env = env.Clone()
env.Prepend( env.Prepend(
CPPPATH = [ CPPPATH = [
Dir("#/../third_party/lzma_sdk"), '$LZMA_SDK_DIR',
Dir("../chrome/third_party/wtl/include"), '$CHROME_DIR/third_party/wtl/include',
Dir("#/../third_party/npapi"), '$NPAPI_DIR',
Dir("#/../third_party/libxml/include"), '$LIBXML_DIR/include',
#/I "C:/src/trunk/chrome/Debug/obj/generated_resources" '$SKIA_DIR/include',
#/I "C:/src/trunk/chrome/Debug/obj/localized_strings" '$SKIA_DIR/include/corecg',
Dir("#/../skia/include"), '$SKIA_DIR/platform',
Dir("#/../skia/include/corecg"), '$LIBPNG_DIR',
Dir("#/../skia/platform"), '$ZLIB_DIR',
Dir("#/../third_party/libpng"), '$BREAKPAD_DIR/src',
Dir("#/../third_party/zlib"), '$LIBJPEG_DIR',
Dir("#/../breakpad/src"), '$ICU38_DIR/public/common',
Dir("#/../third_party/libjpeg"), '$ICU38_DIR/public/i18n',
Dir("#/../third_party/icu38/public/common"), '#/..',
Dir("#/../third_party/icu38/public/i18n"), '.',
Dir("#/.."),
Dir("."),
], ],
CPPDEFINES = [ CPPDEFINES = [
"_LZMA_IN_CB", "_LZMA_IN_CB",
@ -58,37 +56,30 @@ env.Prepend(
"PNG_USER_CONFIG", "PNG_USER_CONFIG",
"CHROME_PNG_WRITE_SUPPORT" "CHROME_PNG_WRITE_SUPPORT"
"U_STATIC_IMPLEMENTATION", "U_STATIC_IMPLEMENTATION",
"CERT_CHAIN_PARA_HAS_EXTRA_FIELDS",
"WIN32_LEAN_AND_MEAN",
], ],
CCFLAGS = [ CCFLAGS = [
'/TP', '/TP',
'/Wp64',
'/wd4503',
'/wd4819',
], ],
) )
input_files = [ input_files = [
"../../app/google_update_settings$OBJSUFFIX", '../../app/google_update_settings$OBJSUFFIX',
"copy_tree_work_item.cc", 'copy_tree_work_item.cc',
"create_dir_work_item.cc", 'create_dir_work_item.cc',
"create_reg_key_work_item.cc", 'create_reg_key_work_item.cc',
"delete_tree_work_item.cc", 'delete_tree_work_item.cc',
"google_update_constants.cc", 'google_update_constants.cc',
"helper.cc", 'helper.cc',
"install_util.cc", 'install_util.cc',
"l10n_string_util.cc", 'l10n_string_util.cc',
"logging_installer.cc", 'logging_installer.cc',
"lzma_util.cc", 'lzma_util.cc',
"set_reg_value_work_item.cc", 'set_reg_value_work_item.cc',
"shell_util.cc", 'shell_util.cc',
"util_constants.cc", 'util_constants.cc',
"version.cc", 'version.cc',
"work_item.cc", 'work_item.cc',
"work_item_list.cc", 'work_item_list.cc',
] ]
x = env.StaticLibrary('util', input_files) x = env.StaticLibrary('util', input_files)

@ -32,42 +32,32 @@ Import('env')
env = env.Clone() env = env.Clone()
env.Prepend( env.Prepend(
CPPPATH = [ CPPPATH = [
Dir("#/../third_party/npapi"), '$NPAPI_DIR',
Dir("#/../chrome/tools/build/win"), '$CHROME_DIR/tools/build/win',
Dir("#/../skia/include"), '$SKIA_DIR/include',
Dir("#/../skia/include/corecg"), '$SKIA_DIR/include/corecg',
Dir("#/../skia/platform"), '$SKIA_DIR/platform',
Dir("#/.."), '#/..',
],
CPPDEFINES = [
"CERT_CHAIN_PARA_HAS_EXTRA_FIELDS",
"WIN32_LEAN_AND_MEAN",
], ],
CCFLAGS = [ CCFLAGS = [
'/TP', '/TP',
#'/Wp64',
'/wd4503',
'/wd4819',
], ],
) )
input_files = [ input_files = [
"npobject_proxy.cc", 'chrome_plugin_host.cc',
"webplugin_proxy.cc", 'npobject_proxy.cc',
"webplugin_delegate_stub.cc", 'npobject_stub.cc',
"plugin_thread.cc", 'npobject_util.cc',
"plugin_process.cc", 'plugin_channel.cc',
"plugin_main.cc", 'plugin_channel_base.cc',
"plugin_channel_base.cc", 'plugin_main.cc',
"plugin_channel.cc", 'plugin_process.cc',
"chrome_plugin_host.cc", 'plugin_thread.cc',
"npobject_util.cc", 'webplugin_delegate_stub.cc',
"npobject_stub.cc", 'webplugin_proxy.cc',
] ]
env.StaticLibrary('plugin', input_files) env.StaticLibrary('plugin', input_files)

@ -32,33 +32,17 @@ Import('env')
env = env.Clone() env = env.Clone()
#/Yu"precompiled_wtl.h"
#/Fp"C:\src\trunk\chrome\Debug\obj\browser\precompiled_wtl.pch"
#/Fo"C:\src\trunk\chrome\Debug\obj\browser\\"
#/Fd"C:\src\trunk\chrome\Debug\obj\browser\vc80.pdb"
#/W3
#/WX
#/FI "precompiled_wtl.h"
env.Prepend( env.Prepend(
CPPPATH = [ CPPPATH = [
env.Dir('../app/resources'), '$CHROME_DIR/app/resources',
env.Dir('#/tools/build/win'), '#/tools/build/win',
env.Dir('#/..'), '#/..',
], ],
CPPDEFINES = [ CPPDEFINES = [
'U_STATIC_IMPLEMENTATION', 'U_STATIC_IMPLEMENTATION',
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
'WIN32_LEAN_AND_MEAN',
], ],
CCFLAGS = [ CCFLAGS = [
'/TP', '/TP',
'/Wp64',
'/wd4503',
'/wd4819',
], ],
) )
@ -67,8 +51,6 @@ env.Append(
'third_party/wtl/include', 'third_party/wtl/include',
'$ICU38_DIR/public/common', '$ICU38_DIR/public/common',
'$ICU38_DIR/public/i18n', '$ICU38_DIR/public/i18n',
#Dir('#../chrome/Debug/obj/generated_resources'),
#Dir('#../chrome/Debug/obj/localized_strings'),
'$NPAPI_DIR', '$NPAPI_DIR',
'$SKIA_DIR/include', '$SKIA_DIR/include',
'$SKIA_DIR/include/corecg', '$SKIA_DIR/include/corecg',

@ -38,8 +38,6 @@ env_test.Prepend(
'UNIT_TEST', 'UNIT_TEST',
'LIBXSLT_STATIC', 'LIBXSLT_STATIC',
'LIBXML_STATIC', 'LIBXML_STATIC',
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
'WIN32_LEAN_AND_MEAN',
], ],
CPPPATH = [ CPPPATH = [
'$GTEST_DIR/include', '$GTEST_DIR/include',

@ -36,8 +36,6 @@ env_test = env_test.Clone()
env_test.Prepend( env_test.Prepend(
CPPDEFINES = [ CPPDEFINES = [
'UNIT_TEST', 'UNIT_TEST',
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
'WIN32_LEAN_AND_MEAN',
], ],
CPPPATH = [ CPPPATH = [
'$GTEST_DIR/include', '$GTEST_DIR/include',

@ -36,8 +36,6 @@ env_test.Prepend(
CPPDEFINES = [ CPPDEFINES = [
'UI_TEST', 'UI_TEST',
'UNIT_TEST', 'UNIT_TEST',
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
'WIN32_LEAN_AND_MEAN',
], ],
CPPPATH = [ CPPPATH = [
'$GTEST_DIR/include', '$GTEST_DIR/include',

@ -38,8 +38,6 @@ env_test.Prepend(
'UNIT_TEST', 'UNIT_TEST',
'LIBXSLT_STATIC', 'LIBXSLT_STATIC',
'LIBXML_STATIC', 'LIBXML_STATIC',
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
'WIN32_LEAN_AND_MEAN',
], ],
CPPPATH = [ CPPPATH = [
'$GTEST_DIR/include', '$GTEST_DIR/include',

@ -37,8 +37,6 @@ env_test.Prepend(
'RELIABILITY_TEST', # seems to be unused 'RELIABILITY_TEST', # seems to be unused
'UI_TEST', 'UI_TEST',
'UNIT_TEST', 'UNIT_TEST',
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
'WIN32_LEAN_AND_MEAN',
], ],
CPPPATH = [ CPPPATH = [
'$GTEST_DIR/include', '$GTEST_DIR/include',

@ -35,8 +35,6 @@ env_test.Prepend(
CPPDEFINES = [ CPPDEFINES = [
'UI_TEST', 'UI_TEST',
'UNIT_TEST', 'UNIT_TEST',
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
'WIN32_LEAN_AND_MEAN',
], ],
CPPPATH = [ CPPPATH = [
'$GTEST_DIR/include', '$GTEST_DIR/include',

@ -35,8 +35,6 @@ env_test.Prepend(
CPPDEFINES = [ CPPDEFINES = [
'UI_TEST', 'UI_TEST',
'UNIT_TEST', 'UNIT_TEST',
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
'WIN32_LEAN_AND_MEAN',
], ],
CPPPATH = [ CPPPATH = [
'$GTEST_DIR/include', '$GTEST_DIR/include',

@ -35,8 +35,6 @@ env_test.Prepend(
CPPDEFINES = [ CPPDEFINES = [
'UI_TEST', 'UI_TEST',
'UNIT_TEST', 'UNIT_TEST',
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
'WIN32_LEAN_AND_MEAN',
], ],
CPPPATH = [ CPPPATH = [
'$GTEST_DIR/include', '$GTEST_DIR/include',

@ -52,8 +52,6 @@ env.Append(
'/TP', '/TP',
'/wd4800', '/wd4800',
'/wd4503',
'/wd4819',
], ],
) )

@ -52,7 +52,6 @@ env.Append(
'SQLITE_SECURE_DELETE', 'SQLITE_SECURE_DELETE',
'THREADSAFE', 'THREADSAFE',
['_HAS_EXCEPTIONS', '0'], ['_HAS_EXCEPTIONS', '0'],
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
], ],
CCFLAGS = [ CCFLAGS = [
@ -60,8 +59,6 @@ env.Append(
'/wd4800', '/wd4800',
'/wd4244', '/wd4244',
'/wd4503',
'/wd4819',
], ],
) )

@ -36,8 +36,6 @@ env_test.Prepend(
'PNG_USER_CONFIG', 'PNG_USER_CONFIG',
'CHROME_PNG_WRITE_SUPPORT', 'CHROME_PNG_WRITE_SUPPORT',
'_DEBUG', '_DEBUG',
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
'WIN32_LEAN_AND_MEAN',
], ],
CPPPATH = [ CPPPATH = [
'$ZLIB_DIR', '$ZLIB_DIR',

@ -32,23 +32,14 @@ Import('env')
env = env.Clone() env = env.Clone()
env.Prepend( env.Prepend(
CPPPATH = [ CPPPATH = [
env.Dir("#/../chrome/tools/build/win"), '$CHROME_DIR/tools/build/win',
env.Dir("#/.."), '#/..',
],
CPPDEFINES = [
"CERT_CHAIN_PARA_HAS_EXTRA_FIELDS",
"WIN32_LEAN_AND_MEAN",
], ],
CCFLAGS = [ CCFLAGS = [
'/TP', '/TP',
#'/Wp64', #'/Wp64',
'/wd4503',
'/wd4819',
], ],
) )

@ -45,11 +45,9 @@ env.Prepend(
env.Append( env.Append(
CPPDEFINES = [ CPPDEFINES = [
'U_STATIC_IMPLEMENTATION', 'U_STATIC_IMPLEMENTATION',
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
], ],
CCFLAGS = [ CCFLAGS = [
'/wd4503', '/Wp64',
'/wd4819',
], ],
) )
@ -163,16 +161,11 @@ env_tests.Prepend(
'_WIN32_WINNT=0x0600', '_WIN32_WINNT=0x0600',
'WINVER=0x0600', 'WINVER=0x0600',
'_HAS_EXCEPTIONS=0', '_HAS_EXCEPTIONS=0',
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
'WIN32_LEAN_AND_MEAN',
], ],
CCFLAGS = [ CCFLAGS = [
'/TP',
'/WX', '/WX',
'/Wp64', '/Wp64',
'/TP',
'/wd4503',
'/wd4819',
], ],
LINKFLAGS = [ LINKFLAGS = [
'/DELAYLOAD:"dwmapi.dll"', '/DELAYLOAD:"dwmapi.dll"',

@ -40,9 +40,6 @@ env.Prepend(
env.Append( env.Append(
CCFLAGS = [ CCFLAGS = [
'/TP', '/TP',
'/wd4503',
'/wd4819',
], ],
LINKFLAGS = [ LINKFLAGS = [

@ -50,12 +50,6 @@ env.Append(
'/TP', '/TP',
'/WX', # treat warnings as errors '/WX', # treat warnings as errors
'/Wp64', # warn about potential 64-bit problems '/Wp64', # warn about potential 64-bit problems
'/wd4503',
'/wd4819',
],
CPPDEFINES = [
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
'WIN32_LEAN_AND_MEAN',
], ],
) )

@ -56,8 +56,6 @@ env.Append(
'/wd4390', '/wd4390',
'/wd4554', '/wd4554',
'/wd4800', '/wd4800',
'/wd4503',
'/wd4819',
], ],
) )

@ -40,15 +40,7 @@ env.Prepend(
env.Append( env.Append(
CCFLAGS = [ CCFLAGS = [
'/TP', '/TP',
'/wd4800', '/wd4800',
'/wd4503',
'/wd4819',
],
CPPDEFINES = [
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
'WIN32_LEAN_AND_MEAN',
], ],
) )

@ -44,15 +44,12 @@ env.Append(
], ],
CCFLAGS = [ CCFLAGS = [
'/TP', '/TP',
'/wd4800', '/wd4800',
'/wd4503',
'/wd4819',
], ],
) )
input_files = Split(''' input_files = [
mbspatch.cc 'mbspatch.cc',
''') ]
env.StaticLibrary('bspatch', input_files) env.StaticLibrary('bspatch', input_files)

@ -33,13 +33,12 @@ env = env.Clone()
env.Append( env.Append(
CCFLAGS = [ CCFLAGS = [
'/DBZ_NO_STDIO',
'/TC', '/TC',
'/wd4996', '/wd4996',
'/wd4800', '/wd4800',
'/wd4503', ],
'/wd4819', CPPDEFINES = [
'BZ_NO_STDIO',
], ],
) )

@ -40,10 +40,7 @@ env.Prepend(
env.Append( env.Append(
CCFLAGS = [ CCFLAGS = [
'/TC', '/TC',
'/wd4800', '/wd4800',
'/wd4503',
'/wd4819',
], ],
) )

@ -41,10 +41,7 @@ env.Prepend(
env.Append( env.Append(
CCFLAGS = [ CCFLAGS = [
'/TP', '/TP',
'/wd4800', '/wd4800',
'/wd4503',
'/wd4819',
], ],
CPPDEFINES = [ CPPDEFINES = [
'PNG_USER_CONFIG', 'PNG_USER_CONFIG',

@ -49,10 +49,7 @@ env.Append(
], ],
CCFLAGS = [ CCFLAGS = [
'/TC', '/TC',
'/wd4800', '/wd4800',
'/wd4503',
'/wd4819',
], ],
) )

@ -51,10 +51,7 @@ env.Append(
], ],
CCFLAGS = [ CCFLAGS = [
'/TC', '/TC',
'/wd4800', '/wd4800',
'/wd4503',
'/wd4819',
], ],
) )

@ -46,26 +46,23 @@ env.Append(
], ],
CCFLAGS = [ CCFLAGS = [
'/TC', '/TC',
'/wd4800', '/wd4800',
'/wd4503',
'/wd4819',
], ],
) )
input_files = Split(''' input_files = [
Compress/Lzma/LzmaDecode.c 'Compress/Lzma/LzmaDecode.c',
Archive/7z/7zMethodID.c 'Archive/7z/7zMethodID.c',
Archive/7z/7zItem.c 'Archive/7z/7zItem.c',
Archive/7z/7zIn.c 'Archive/7z/7zIn.c',
Archive/7z/7zHeader.c 'Archive/7z/7zHeader.c',
Archive/7z/7zExtract.c 'Archive/7z/7zExtract.c',
Archive/7z/7zDecode.c 'Archive/7z/7zDecode.c',
Archive/7z/7zBuffer.c 'Archive/7z/7zBuffer.c',
Archive/7z/7zAlloc.c 'Archive/7z/7zAlloc.c',
Compress/Branch/BranchX86_2.c 'Compress/Branch/BranchX86_2.c',
Compress/Branch/BranchX86.c 'Compress/Branch/BranchX86.c',
7zCrc.c '7zCrc.c',
''') ]
env.StaticLibrary('lzma_sdk', input_files) env.StaticLibrary('lzma_sdk', input_files)

@ -34,10 +34,7 @@ env = env.Clone()
env.Append( env.Append(
CCFLAGS = [ CCFLAGS = [
'/TC', '/TC',
'/wd4800', '/wd4800',
'/wd4503',
'/wd4819',
], ],
) )

@ -155,9 +155,6 @@ env.Append(
'_WIN32_WINNT=0x0600', '_WIN32_WINNT=0x0600',
'WINVER=0x0600', 'WINVER=0x0600',
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
'WIN32_LEAN_AND_MEAN',
'LIBXSLT_STATIC', 'LIBXSLT_STATIC',
'LIBXML_STATIC', 'LIBXML_STATIC',
'PNG_USER_CONFIG', 'PNG_USER_CONFIG',

@ -47,8 +47,6 @@ env.Prepend(
'/wd4610', '/wd4610',
'/wd4706', '/wd4706',
'/wd4800', '/wd4800',
'/wd4503',
'/wd4819',
], ],
) )

@ -32,108 +32,106 @@ Import('env')
env = env.Clone() env = env.Clone()
env.Prepend( env.Prepend(
CCFLAGS = [ CCFLAGS = [
"/TP", '/TP',
"/wd4244", '/wd4244',
"/wd4291", '/wd4291',
"/wd4345", '/wd4345',
"/wd4521", '/wd4521',
"/wd4800", '/wd4800',
"/wd4503", ],
"/wd4819",
],
) )
input_files = [ input_files = [
"$PORT_DIR/css/RGBColor.cpp", '$PORT_DIR/css/RGBColor.cpp',
"$PORT_DIR/history/CachedPage.cpp", '$PORT_DIR/history/CachedPage.cpp',
"$PORT_DIR/history/BackForwardList.cpp", '$PORT_DIR/history/BackForwardList.cpp',
"$PORT_DIR/bridge/PluginsWin.cpp", '$PORT_DIR/bridge/PluginsWin.cpp',
"$PORT_DIR/bridge/PageWin.cpp", '$PORT_DIR/bridge/PageWin.cpp',
"$PORT_DIR/bridge/HistoryWin.cpp", '$PORT_DIR/bridge/HistoryWin.cpp',
"$PORT_DIR/bridge/FrameWin.cpp", '$PORT_DIR/bridge/FrameWin.cpp',
"$PORT_DIR/rendering/RenderThemeWin.cpp", '$PORT_DIR/rendering/RenderThemeWin.cpp',
"$PORT_DIR/platform/network/CookieJarWin.cpp", '$PORT_DIR/platform/network/CookieJarWin.cpp',
"$PORT_DIR/platform/image-decoders/xbm/XBMImageDecoder.cpp", '$PORT_DIR/platform/image-decoders/xbm/XBMImageDecoder.cpp',
"$PORT_DIR/platform/image-decoders/ico/ICOImageDecoder.cpp", '$PORT_DIR/platform/image-decoders/ico/ICOImageDecoder.cpp',
"$PORT_DIR/platform/image-decoders/bmp/BMPImageReader.cpp", '$PORT_DIR/platform/image-decoders/bmp/BMPImageReader.cpp',
"$PORT_DIR/platform/image-decoders/bmp/BMPImageDecoder.cpp", '$PORT_DIR/platform/image-decoders/bmp/BMPImageDecoder.cpp',
"$PORT_DIR/platform/image-decoders/png/PNGImageDecoder.cpp", '$PORT_DIR/platform/image-decoders/png/PNGImageDecoder.cpp',
"$PORT_DIR/platform/image-decoders/jpeg/JPEGImageDecoder.cpp", '$PORT_DIR/platform/image-decoders/jpeg/JPEGImageDecoder.cpp',
"$PORT_DIR/platform/image-decoders/gif/GIFImageReader.cpp", '$PORT_DIR/platform/image-decoders/gif/GIFImageReader.cpp',
"$PORT_DIR/platform/image-decoders/gif/GIFImageDecoder.cpp", '$PORT_DIR/platform/image-decoders/gif/GIFImageDecoder.cpp',
"$PORT_DIR/platform/graphics/svg/SVGResourceMaskerSkia.cpp", '$PORT_DIR/platform/graphics/svg/SVGResourceMaskerSkia.cpp',
"$PORT_DIR/platform/graphics/svg/SVGResourceFilterSkia.cpp", '$PORT_DIR/platform/graphics/svg/SVGResourceFilterSkia.cpp',
"$PORT_DIR/platform/graphics/svg/SVGResourceClipperSkia.cpp", '$PORT_DIR/platform/graphics/svg/SVGResourceClipperSkia.cpp',
"$PORT_DIR/platform/graphics/svg/SVGPaintServerSolidSkia.cpp", '$PORT_DIR/platform/graphics/svg/SVGPaintServerSolidSkia.cpp',
"$PORT_DIR/platform/graphics/svg/SVGPaintServerSkia.cpp", '$PORT_DIR/platform/graphics/svg/SVGPaintServerSkia.cpp',
"$PORT_DIR/platform/graphics/svg/SVGPaintServerPatternSkia.cpp", '$PORT_DIR/platform/graphics/svg/SVGPaintServerPatternSkia.cpp',
"$PORT_DIR/platform/graphics/svg/SVGPaintServerGradientSkia.cpp", '$PORT_DIR/platform/graphics/svg/SVGPaintServerGradientSkia.cpp',
"$PORT_DIR/platform/graphics/svg/SkiaSupport.cpp", '$PORT_DIR/platform/graphics/svg/SkiaSupport.cpp',
"$PORT_DIR/platform/graphics/svg/RenderPathSkia.cpp", '$PORT_DIR/platform/graphics/svg/RenderPathSkia.cpp',
"$PORT_DIR/platform/graphics/SkPaintContext.cpp", '$PORT_DIR/platform/graphics/SkPaintContext.cpp',
"$PORT_DIR/platform/graphics/SkiaUtils.cpp", '$PORT_DIR/platform/graphics/SkiaUtils.cpp',
"$PORT_DIR/platform/graphics/SkGraphicsContext.cpp", '$PORT_DIR/platform/graphics/SkGraphicsContext.cpp',
"$PORT_DIR/platform/graphics/SimpleFontDataWin.cpp", '$PORT_DIR/platform/graphics/SimpleFontDataWin.cpp',
"$PORT_DIR/platform/graphics/PlatformContextSkia.cpp", '$PORT_DIR/platform/graphics/PlatformContextSkia.cpp',
"$PORT_DIR/platform/graphics/PathSkia.cpp", '$PORT_DIR/platform/graphics/PathSkia.cpp',
"$PORT_DIR/platform/graphics/IntSizeWin.cpp", '$PORT_DIR/platform/graphics/IntSizeWin.cpp',
"$PORT_DIR/platform/graphics/IntRectWin.cpp", '$PORT_DIR/platform/graphics/IntRectWin.cpp',
"$PORT_DIR/platform/graphics/IntPointWin.cpp", '$PORT_DIR/platform/graphics/IntPointWin.cpp',
"$PORT_DIR/platform/graphics/ImageSourceSkia.cpp", '$PORT_DIR/platform/graphics/ImageSourceSkia.cpp',
"$PORT_DIR/platform/graphics/ImageSkia.cpp", '$PORT_DIR/platform/graphics/ImageSkia.cpp',
"$PORT_DIR/platform/graphics/ImageBufferSkia.cpp", '$PORT_DIR/platform/graphics/ImageBufferSkia.cpp',
"$PORT_DIR/platform/graphics/IconWin.cpp", '$PORT_DIR/platform/graphics/IconWin.cpp',
"$PORT_DIR/platform/graphics/GraphicsContextSkia.cpp", '$PORT_DIR/platform/graphics/GraphicsContextSkia.cpp',
"$PORT_DIR/platform/graphics/GraphicsContextPrivate.cpp", '$PORT_DIR/platform/graphics/GraphicsContextPrivate.cpp',
"$PORT_DIR/platform/graphics/GlyphPageTreeNodeWin.cpp", '$PORT_DIR/platform/graphics/GlyphPageTreeNodeWin.cpp',
"$PORT_DIR/platform/graphics/FontWin.cpp", '$PORT_DIR/platform/graphics/FontWin.cpp',
"$PORT_DIR/platform/graphics/FontPlatformDataWin.cpp", '$PORT_DIR/platform/graphics/FontPlatformDataWin.cpp',
"$PORT_DIR/platform/graphics/FontCustomPlatformData.cpp", '$PORT_DIR/platform/graphics/FontCustomPlatformData.cpp',
"$PORT_DIR/platform/graphics/FontCacheWin.cpp", '$PORT_DIR/platform/graphics/FontCacheWin.cpp',
"$PORT_DIR/platform/graphics/AffineTransformSkia.cpp", '$PORT_DIR/platform/graphics/AffineTransformSkia.cpp',
"$PORT_DIR/platform/graphics/NativeImageSkia.cpp", '$PORT_DIR/platform/graphics/NativeImageSkia.cpp',
"$PORT_DIR/platform/WidgetWin.cpp", '$PORT_DIR/platform/WidgetWin.cpp',
"$PORT_DIR/platform/WheelEventWin.cpp", '$PORT_DIR/platform/WheelEventWin.cpp',
"$PORT_DIR/platform/WCDataObject.cpp", '$PORT_DIR/platform/WCDataObject.cpp',
"$PORT_DIR/platform/UniscribeStateTextRun.cpp", '$PORT_DIR/platform/UniscribeStateTextRun.cpp',
"$PORT_DIR/platform/TextBreakIteratorInternalICUWin.cpp", '$PORT_DIR/platform/TextBreakIteratorInternalICUWin.cpp',
"$PORT_DIR/platform/TextBoundariesWin.cpp", '$PORT_DIR/platform/TextBoundariesWin.cpp',
"$PORT_DIR/platform/TemporaryLinkStubs.cpp", '$PORT_DIR/platform/TemporaryLinkStubs.cpp',
"$PORT_DIR/platform/SystemTimeWin.cpp", '$PORT_DIR/platform/SystemTimeWin.cpp',
"$PORT_DIR/platform/SSLKeyGeneratorWin.cpp", '$PORT_DIR/platform/SSLKeyGeneratorWin.cpp',
"$PORT_DIR/platform/SoundWin.cpp", '$PORT_DIR/platform/SoundWin.cpp',
"$PORT_DIR/platform/SharedTimerWin.cpp", '$PORT_DIR/platform/SharedTimerWin.cpp',
"$PORT_DIR/platform/SearchPopupMenuWin.cpp", '$PORT_DIR/platform/SearchPopupMenuWin.cpp',
"$PORT_DIR/platform/ScrollViewWin.cpp", '$PORT_DIR/platform/ScrollViewWin.cpp',
"$PORT_DIR/platform/ScreenWin.cpp", '$PORT_DIR/platform/ScreenWin.cpp',
"$PORT_DIR/platform/PopupMenuWin.cpp", '$PORT_DIR/platform/PopupMenuWin.cpp',
"$PORT_DIR/platform/PlatformScrollBarWin.cpp", '$PORT_DIR/platform/PlatformScrollBarWin.cpp',
"$PORT_DIR/platform/PlatformMouseEventWin.cpp", '$PORT_DIR/platform/PlatformMouseEventWin.cpp',
"$PORT_DIR/platform/PasteboardWin.cpp", '$PORT_DIR/platform/PasteboardWin.cpp',
"$PORT_DIR/platform/MimeTypeRegistryWin.cpp", '$PORT_DIR/platform/MimeTypeRegistryWin.cpp',
"$PORT_DIR/platform/LogWin.cpp", '$PORT_DIR/platform/LogWin.cpp',
"$PORT_DIR/platform/Language.cpp", '$PORT_DIR/platform/Language.cpp',
"$PORT_DIR/platform/KeyEventWin.cpp", '$PORT_DIR/platform/KeyEventWin.cpp',
"$PORT_DIR/platform/GKURL.cpp", '$PORT_DIR/platform/GKURL.cpp',
"$PORT_DIR/platform/FramelessScrollView.cpp", '$PORT_DIR/platform/FramelessScrollView.cpp',
"$PORT_DIR/platform/FontMetrics.cpp", '$PORT_DIR/platform/FontMetrics.cpp',
"$PORT_DIR/platform/FileChooserWin.cpp", '$PORT_DIR/platform/FileChooserWin.cpp',
"$PORT_DIR/platform/EditorWin.cpp", '$PORT_DIR/platform/EditorWin.cpp',
"$PORT_DIR/platform/DragImageWin.cpp", '$PORT_DIR/platform/DragImageWin.cpp',
"$PORT_DIR/platform/DragDataWin.cpp", '$PORT_DIR/platform/DragDataWin.cpp',
"$PORT_DIR/platform/CursorWin.cpp", '$PORT_DIR/platform/CursorWin.cpp',
"$PORT_DIR/platform/ContextMenuWin.cpp", '$PORT_DIR/platform/ContextMenuWin.cpp',
"$PORT_DIR/platform/ContextMenuItemWin.cpp", '$PORT_DIR/platform/ContextMenuItemWin.cpp',
"$PORT_DIR/platform/ClipboardWin.cpp", '$PORT_DIR/platform/ClipboardWin.cpp',
"$PORT_DIR/platform/ClipboardUtilitiesWin.cpp", '$PORT_DIR/platform/ClipboardUtilitiesWin.cpp',
"$PORT_DIR/platform/BString.cpp", '$PORT_DIR/platform/BString.cpp',
"$PORT_DIR/loader/IconLoader.cpp", '$PORT_DIR/loader/IconLoader.cpp',
"$PORT_DIR/loader/IconDatabaseNone.cpp", '$PORT_DIR/loader/IconDatabaseNone.cpp',
"$PORT_DIR/page/AXObjectCacheWin.cpp", '$PORT_DIR/page/AXObjectCacheWin.cpp',
"$PORT_DIR/page/EventHandlerWin.cpp", '$PORT_DIR/page/EventHandlerWin.cpp',
"$PORT_DIR/page/DragControllerWin.cpp", '$PORT_DIR/page/DragControllerWin.cpp',
] ]
env.Library("Port.lib", input_files) env.Library("Port.lib", input_files)

@ -47,9 +47,6 @@ env.Append(
'/WX', '/WX',
'/Wp64', '/Wp64',
'/wd4503',
'/wd4819',
], ],
# TODO(bradnelson): Scons should really have a way to handle this. # TODO(bradnelson): Scons should really have a way to handle this.
ARFLAGS = [ ARFLAGS = [
@ -69,5 +66,3 @@ input_files = [
] ]
env.StaticLibrary('activex_shim', input_files) env.StaticLibrary('activex_shim', input_files)

@ -144,13 +144,12 @@ env.Append(
'U_STATIC_IMPLEMENTATION', 'U_STATIC_IMPLEMENTATION',
'_WIN32_WINNT=0x0600', '_WIN32_WINNT=0x0600',
'WINVER=0x0600', 'WINVER=0x0600',
'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
'WIN32_LEAN_AND_MEAN',
], ],
CCFLAGS = [ CCFLAGS = [
'/TP',
'/WX', '/WX',
'/Wp64', '/Wp64',
'/TP',
'/wd4127', '/wd4127',
'/wd4355', '/wd4355',
@ -158,8 +157,6 @@ env.Append(
'/wd4512', '/wd4512',
'/wd4610', '/wd4610',
'/wd4706', '/wd4706',
'/wd4503',
'/wd4819',
], ],
) )

@ -46,8 +46,6 @@ env.Prepend(
'/wd4521', '/wd4521',
'/wd4244', '/wd4244',
'/wd4800', '/wd4800',
'/wd4503',
'/wd4819',
], ],
) )

@ -42,8 +42,6 @@ env.Append(
'/wd4521', '/wd4521',
'/wd4099', '/wd4099',
'/wd4800', '/wd4800',
'/wd4503',
'/wd4819',
], ],
) )

@ -52,9 +52,6 @@ env.Append(
'/WX', '/WX',
'/Wp64', '/Wp64',
'/wd4503',
'/wd4819',
], ],
) )
@ -69,5 +66,3 @@ input_files = [
] ]
env.StaticLibrary('default_plugin', input_files) env.StaticLibrary('default_plugin', input_files)

@ -38,69 +38,67 @@ env.Append(
'/WX', '/WX',
'/wd4800', '/wd4800',
'/wd4503',
'/wd4819',
], ],
) )
input_files = [ input_files = [
'alt_404_page_resource_fetcher.cc',
'autocomplete_input_listener.cc',
'plugins/webplugin_delegate_impl.cc',
'plugins/plugin_string_stream.cc',
'plugins/plugin_stream_url.cc',
'plugins/plugin_stream.cc',
'plugins/plugin_list.cc',
'plugins/plugin_lib.cc',
'plugins/plugin_instance.cc',
'plugins/plugin_host.cc',
'plugins/plugin_data_stream.cc',
'plugins/mozilla_extensions.cc',
'webwidget_impl.cc',
'webview_impl.cc',
'weburlrequest_impl.cc',
'webtextinput_impl.cc',
'webplugin_impl.cc',
'webkit_glue.cc',
'webinputevent.cc',
'webhistoryitem_impl.cc',
'webframeloaderclient_impl.cc',
'webframe_impl.cc',
'weberror_impl.cc',
'webdropdata.cc',
'webdocumentloader_impl.cc',
'webdatasource_impl.cc',
'webcursor.cc',
'simple_clipboard_impl.cc',
'searchable_form_data.cc',
'resource_handle_win.cc',
'resource_fetcher.cc',
'password_form_dom_manager.cc',
'password_autocomplete_listener.cc',
'multipart_response_delegate.cc',
'localized_strings.cc',
'inspector_client_impl.cc',
'glue_util.cc',
'glue_serialize.cc',
'feed_preview.cc',
'image_resource_fetcher.cc',
'image_decoder.cc',
'event_conversion.cc',
'editor_client_impl.cc',
'entity_map.cc',
'dragclient_impl.cc',
'dom_operations.cc',
'dom_serializer.cc',
'debugger.cc',
'cpp_variant.cc',
'cpp_bound_class.cc',
'cpp_binding_example.cc',
'context_menu_client_impl.cc',
'chrome_client_impl.cc',
'cache_manager.cc',
'alt_error_page_resource_fetcher.cc',
'$PENDING_DIR/AccessibleBase.cpp', '$PENDING_DIR/AccessibleBase.cpp',
'$PENDING_DIR/AccessibleDocument.cpp', '$PENDING_DIR/AccessibleDocument.cpp',
'alt_404_page_resource_fetcher.cc',
'alt_error_page_resource_fetcher.cc',
'autocomplete_input_listener.cc',
'cache_manager.cc',
'chrome_client_impl.cc',
'context_menu_client_impl.cc',
'cpp_binding_example.cc',
'cpp_bound_class.cc',
'cpp_variant.cc',
'debugger.cc',
'dom_operations.cc',
'dom_serializer.cc',
'dragclient_impl.cc',
'editor_client_impl.cc',
'entity_map.cc',
'event_conversion.cc',
'feed_preview.cc',
'glue_serialize.cc',
'glue_util.cc',
'image_decoder.cc',
'image_resource_fetcher.cc',
'inspector_client_impl.cc',
'localized_strings.cc',
'multipart_response_delegate.cc',
'password_autocomplete_listener.cc',
'password_form_dom_manager.cc',
'plugins/mozilla_extensions.cc',
'plugins/plugin_data_stream.cc',
'plugins/plugin_host.cc',
'plugins/plugin_instance.cc',
'plugins/plugin_lib.cc',
'plugins/plugin_list.cc',
'plugins/plugin_stream.cc',
'plugins/plugin_stream_url.cc',
'plugins/plugin_string_stream.cc',
'plugins/webplugin_delegate_impl.cc',
'resource_fetcher.cc',
'resource_handle_win.cc',
'searchable_form_data.cc',
'simple_clipboard_impl.cc',
'webcursor.cc',
'webdatasource_impl.cc',
'webdocumentloader_impl.cc',
'webdropdata.cc',
'weberror_impl.cc',
'webframe_impl.cc',
'webframeloaderclient_impl.cc',
'webhistoryitem_impl.cc',
'webinputevent.cc',
'webkit_glue.cc',
'webplugin_impl.cc',
'webtextinput_impl.cc',
'weburlrequest_impl.cc',
'webview_impl.cc',
'webwidget_impl.cc',
] ]
env.StaticLibrary('Glue', input_files) env.StaticLibrary('Glue', input_files)

@ -49,15 +49,13 @@ input_files = [
'plugin_window_size_test.cc', 'plugin_window_size_test.cc',
'npapi_test.def', 'npapi_test.def',
env.File('$BASE_DIR/base.lib'), '$BASE_DIR/base.lib',
] ]
env.Append( env.Append(
CCFLAGS = [ CCFLAGS = [
'/TP', '/TP',
'/wd4800', '/wd4800',
'/wd4503',
'/wd4819',
], ],
LIBS = [ LIBS = [

@ -44,8 +44,6 @@ env.Append(
CCFLAGS = [ CCFLAGS = [
'/TP', '/TP',
'/WX', '/WX',
'/wd4503',
'/wd4819',
], ],
LIBS = [ LIBS = [

@ -70,8 +70,6 @@ env.Append(
'/TP', '/TP',
'/WX', '/WX',
'/Wp64', '/Wp64',
'/wd4503',
'/wd4819',
], ],
LIBS = [ LIBS = [