summaryrefslogtreecommitdiffstats
path: root/sandbox/wow_helper
diff options
context:
space:
mode:
authorsgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-01 22:05:12 +0000
committersgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-01 22:05:12 +0000
commit0fad1f1a74408b939d1b09dcc2f9391544e7e692 (patch)
treec62164260c26f143c9ae43c32694142a725bc7eb /sandbox/wow_helper
parenta9b826af8ef183810c176b9ede4a2934f4678d50 (diff)
downloadchromium_src-0fad1f1a74408b939d1b09dcc2f9391544e7e692.zip
chromium_src-0fad1f1a74408b939d1b09dcc2f9391544e7e692.tar.gz
chromium_src-0fad1f1a74408b939d1b09dcc2f9391544e7e692.tar.bz2
Remove the checked-in scons configuration files.
Review URL: http://codereview.chromium.org/53121 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12982 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sandbox/wow_helper')
-rw-r--r--sandbox/wow_helper/wow_helper.scons87
1 files changed, 0 insertions, 87 deletions
diff --git a/sandbox/wow_helper/wow_helper.scons b/sandbox/wow_helper/wow_helper.scons
deleted file mode 100644
index 2430aeb..0000000
--- a/sandbox/wow_helper/wow_helper.scons
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-Import('env')
-
-env = env.Clone()
-
-if env.Bit('windows'):
-
- # NOTE: env.Replace() instead of inhering the normal *.scons settings!
- env.Replace(
- CPPDEFINES = [
- ('_WIN32_WINNT', '0x0501'),
- ('WINVER', '0x0501'),
- 'WIN32',
- '_UNICODE',
- 'UNICODE',
- ],
- CPPPATH = [
- '$CHROME_SRC_DIR',
- ],
- CCFLAGS = [
- '/nologo',
-
- '/EHsc',
-
- '/GS-', # VCCLCompilerTool.BufferSecurityCheck="false"
- '/GR-', # VCCLCompilerTool.RuntimeTypeInfo="false"
- '/W3', # treat warnings as errors
- '/Wp64', # VCCLCompilerTool.Detect64BitPortabilityProblems="false"
-
- # In the old Visual Studio build, we used /Zi (edit and continue),
- # VCCLComilerTool.DebugInformationFormat="3".
- #
- # /Zi ends up with multiple compiler invocations trying to updat
- # the same vc80.pdb file at the same time, with race conditions
- # and permission problems. We're using /Z7 because it makes things
- # work even in parallel builds, without special config to avoid
- # multiple simultaneous updates the vc80.pdb file. All the
- # debugging information and capability still end up in the
- # executables.
- '/Z7', # VCCLCompilerTool.DebugInformationFormat="1"
-
- ],
- LINKFLAGS = [
- '/nologo',
- '/INCREMENTAL:NO',
- '/DEBUG',
- '/MACHINE:X64',
- '/SUBSYSTEM:WINDOWS',
- ],
- )
- if env['TARGET_DEBUG']:
- env.Append(
- CPPDEFINES = [
- '_DEBUG',
- ],
- CCFLAGS = [
- '/Od',
- '/MTd',
- ],
- )
- else:
- env.Append(
- CPPDEFINES = [
- 'NDEBUG',
- ],
- CCFLAGS = [
- '/O2',
- '/GL',
- '/FD',
- '/MT', # VCCLLinkerTool.RuntimeLibrary="0"
- ],
- LINKFLAGS = [
- '/OPT:REF', # VCCLLinkerTool.OptimizeReferences="2"
- '/OPT:ICF', # VCCLLinkerTool.EnableCOMDATFolding="2"
- ],
- )
-
-input_files = [
- 'service64_resolver.cc',
- 'target_code.cc',
- 'wow_helper.cc',
-]
-
-env.ChromeProgram('wow_helper', input_files)