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

Side by Side Diff: chrome/test/mini_installer_test/mini_installer_test.scons

Issue 15051: Convert from using env['PLATFORM'] directly to using the more flexible... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years 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
OLDNEW
1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 Import('env') 5 Import('env')
6 6
7 7
8 env = env.Clone() 8 env = env.Clone()
9 9
10 env.ApplySConscript([ 10 env.ApplySConscript([
(...skipping 14 matching lines...) Expand all
25 25
26 env.Prepend( 26 env.Prepend(
27 CPPPATH = [ 27 CPPPATH = [
28 '$CHROME_SRC_DIR', 28 '$CHROME_SRC_DIR',
29 ], 29 ],
30 LIBS = [ 30 LIBS = [
31 'util', 31 'util',
32 ], 32 ],
33 ) 33 )
34 34
35 if env['PLATFORM'] == 'win32': 35 if env.Bit('windows'):
36 env.Prepend( 36 env.Prepend(
37 LINKFLAGS = [ 37 LINKFLAGS = [
38 '/INCREMENTAL', 38 '/INCREMENTAL',
39 '/DEBUG', 39 '/DEBUG',
40 40
41 '/DELAYLOAD:"dwmapi.dll"', 41 '/DELAYLOAD:"dwmapi.dll"',
42 '/DELAYLOAD:"uxtheme.dll"', 42 '/DELAYLOAD:"uxtheme.dll"',
43 43
44 '/MACHINE:X86', 44 '/MACHINE:X86',
45 '/FIXED:No', 45 '/FIXED:No',
(...skipping 13 matching lines...) Expand all
59 59
60 input_files = [ 60 input_files = [
61 '$CHROME_DIR/installer/setup/setup_constants$OBJSUFFIX', 61 '$CHROME_DIR/installer/setup/setup_constants$OBJSUFFIX',
62 '$CHROME_DIR/installer/util/run_all_unittests$OBJSUFFIX', 62 '$CHROME_DIR/installer/util/run_all_unittests$OBJSUFFIX',
63 'chrome_mini_installer.cc', 63 'chrome_mini_installer.cc',
64 'mini_installer_test_constants.cc', 64 'mini_installer_test_constants.cc',
65 'test.cc', 65 'test.cc',
66 ] 66 ]
67 67
68 env.ChromeTestProgram('mini_installer_test', input_files) 68 env.ChromeTestProgram('mini_installer_test', input_files)
OLDNEW
« no previous file with comments | « chrome/test/memory_test/memory_test.scons ('k') | chrome/test/page_cycler/page_cycler_tests.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698