diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-21 21:33:01 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-21 21:33:01 +0000 |
commit | 97d201b98019051b05093a2457edd079b4a2d9ac (patch) | |
tree | 47bc3331cc7e3d9f64ed402780d778fae7421922 /webkit/build/V8Bindings | |
parent | 79867b59fa6bbfb55fcd9a6b6ba6b7d55a68539e (diff) | |
download | chromium_src-97d201b98019051b05093a2457edd079b4a2d9ac.zip chromium_src-97d201b98019051b05093a2457edd079b4a2d9ac.tar.gz chromium_src-97d201b98019051b05093a2457edd079b4a2d9ac.tar.bz2 |
Start porting port. Also move perl declarations into the correct place
for posix systems. Also remove stray qualifiers in C++ files.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1190 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/build/V8Bindings')
-rw-r--r-- | webkit/build/V8Bindings/SConscript | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/webkit/build/V8Bindings/SConscript b/webkit/build/V8Bindings/SConscript index 227f95e..55bfa7a 100644 --- a/webkit/build/V8Bindings/SConscript +++ b/webkit/build/V8Bindings/SConscript @@ -32,22 +32,23 @@ Import('env') env = env.Clone() -env.Prepend( - CPPDEFINES = [ - 'NOGDI', - ], +if env['PLATFORM'] == 'win32': + env.Prepend( + CPPDEFINES = [ + 'NOGDI', + ], - CCFLAGS = [ - '/TP', + CCFLAGS = [ + '/TP', - '/wd4291', - '/wd4099', - '/wd4996', - '/wd4521', - '/wd4244', - '/wd4800', - ], -) + '/wd4291', + '/wd4099', + '/wd4996', + '/wd4521', + '/wd4244', + '/wd4800', + ], + ) inputs = [ '$DERIVED_DIR/V8MimeType.cpp', |