Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1584)

Unified Diff: sandbox/wow_helper/wow_helper.scons

Issue 53121: Remove the checked-in scons configuration files. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sandbox/using_sandbox.scons ('k') | sdch/SConscript » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sandbox/wow_helper/wow_helper.scons
===================================================================
--- sandbox/wow_helper/wow_helper.scons (revision 12583)
+++ sandbox/wow_helper/wow_helper.scons (working copy)
@@ -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)
« no previous file with comments | « sandbox/using_sandbox.scons ('k') | sdch/SConscript » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698