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 env = env.Clone() | 7 env = env.Clone() |
8 | 8 |
9 env.ApplySConscript([ | 9 env.ApplySConscript([ |
10 '$BASE_DIR/using_base.scons', | 10 '$BASE_DIR/using_base.scons', |
(...skipping 22 matching lines...) Expand all Loading... |
33 '$CHROME_SRC_DIR', | 33 '$CHROME_SRC_DIR', |
34 ], | 34 ], |
35 LIBS = [ | 35 LIBS = [ |
36 'automation', | 36 'automation', |
37 'browser', | 37 'browser', |
38 'browser_views', | 38 'browser_views', |
39 'common', | 39 'common', |
40 ], | 40 ], |
41 ) | 41 ) |
42 | 42 |
43 if env['PLATFORM'] == 'win32': | 43 if env.Bit('windows'): |
44 env.Prepend( | 44 env.Prepend( |
45 LINKFLAGS = [ | 45 LINKFLAGS = [ |
46 '/INCREMENTAL', | 46 '/INCREMENTAL', |
47 '/DEBUG', | 47 '/DEBUG', |
48 | 48 |
49 '/DELAYLOAD:"dwmapi.dll"', | 49 '/DELAYLOAD:"dwmapi.dll"', |
50 '/DELAYLOAD:"uxtheme.dll"', | 50 '/DELAYLOAD:"uxtheme.dll"', |
51 | 51 |
52 '/MACHINE:X86', | 52 '/MACHINE:X86', |
53 '/FIXED:No', | 53 '/FIXED:No', |
(...skipping 12 matching lines...) Expand all Loading... |
66 ) | 66 ) |
67 | 67 |
68 input_files = [ | 68 input_files = [ |
69 '$CHROME_DIR/test/ui/run_all_unittests$OBJSUFFIX', | 69 '$CHROME_DIR/test/ui/run_all_unittests$OBJSUFFIX', |
70 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX', | 70 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX', |
71 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', | 71 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', |
72 'selenium_test.cc', | 72 'selenium_test.cc', |
73 ] | 73 ] |
74 | 74 |
75 env.ChromeTestProgram('selenium_tests', input_files) | 75 env.ChromeTestProgram('selenium_tests', input_files) |
OLD | NEW |