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

Side by Side Diff: net/tools/tld_cleanup/SConscript

Issue 7807: SCons renaming updates for base, net and googleurl:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 2 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/stress_cache.scons ('k') | net/tools/tld_cleanup/tld_cleanup.scons » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 Import('env')
6
7 env = env.Clone()
8
9 env.Prepend(
10 CPPPATH = [
11 '../../..',
12 ],
13 LIBS = [
14 'googleurl',
15 env['ICU_LIBS'], # TODO(sgk): '$ICU_LIBS' when scons is fixed
16 'base',
17 # We only need to link with net due to use precompiled_net.pch.
18 'net',
19 ],
20 )
21
22 env.Append(
23 CCFLAGS = [
24 '/TP',
25 ],
26
27 LINKFLAGS = [
28 '/INCREMENTAL',
29 '/MANIFEST',
30 '/DELAYLOAD:"dwmapi.dll"',
31 '/DELAYLOAD:"uxtheme.dll"',
32 '/DEBUG',
33 '/SUBSYSTEM:CONSOLE',
34 '/MACHINE:X86',
35 '/FIXED:No',
36 '/safeseh',
37 '/dynamicbase',
38 '/ignore:4199',
39 '/nxcompat',
40 ],
41 )
42
43 input_files = [
44 'tld_cleanup.cc',
45 ]
46
47 exe_targets = env.ChromeProgram('tld_cleanup', input_files)
48 i = env.Install('$TARGET_ROOT', exe_targets)
49 env.Alias('net', i)
50
51 env.Install('$TARGET_ROOT', exe_targets)
52
OLDNEW
« no previous file with comments | « net/stress_cache.scons ('k') | net/tools/tld_cleanup/tld_cleanup.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698