diff options
author | evanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-01 21:56:42 +0000 |
---|---|---|
committer | evanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-01 21:56:42 +0000 |
commit | 6b38199605b0315cc71e5112b05d91a25a4074d9 (patch) | |
tree | 1b68d9aecab0c00d9dc5e0e0da2169b206d1b44b /testing | |
parent | ee73678e5a629620179e30dbea0db263d07c38a1 (diff) | |
download | chromium_src-6b38199605b0315cc71e5112b05d91a25a4074d9.zip chromium_src-6b38199605b0315cc71e5112b05d91a25a4074d9.tar.gz chromium_src-6b38199605b0315cc71e5112b05d91a25a4074d9.tar.bz2 |
Linuxify testing/SConscript.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'testing')
-rw-r--r-- | testing/SConscript.gtest | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/testing/SConscript.gtest b/testing/SConscript.gtest index 38dd2f3..c2810c1 100644 --- a/testing/SConscript.gtest +++ b/testing/SConscript.gtest @@ -38,14 +38,15 @@ env.Prepend( ],
)
-env.Append(
- CCFLAGS = [
- '/TP',
+if env['PLATFORM'] == 'win32':
+ env.Append(
+ CCFLAGS = [
+ '/TP',
- '/WX',
- '/Wp64',
- ],
-)
+ '/WX',
+ '/Wp64',
+ ],
+ )
input_files = [
'gtest/src/gtest-death-test.cc',
|