OLD | NEW |
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 Loading... |
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 Loading... |
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) |
OLD | NEW |