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 18 matching lines...) Expand all Loading... |
29 '$CHROME_SRC_DIR', | 29 '$CHROME_SRC_DIR', |
30 ], | 30 ], |
31 LIBS = [ | 31 LIBS = [ |
32 'automation', | 32 'automation', |
33 'browser', | 33 'browser', |
34 'browser_views', | 34 'browser_views', |
35 'common', | 35 'common', |
36 ], | 36 ], |
37 ) | 37 ) |
38 | 38 |
39 if env['PLATFORM'] == 'win32': | 39 if env.Bit('windows'): |
40 env.Prepend( | 40 env.Prepend( |
41 LINKFLAGS = [ | 41 LINKFLAGS = [ |
42 '/INCREMENTAL', | 42 '/INCREMENTAL', |
43 '/DEBUG', | 43 '/DEBUG', |
44 | 44 |
45 '/DELAYLOAD:"dwmapi.dll"', | 45 '/DELAYLOAD:"dwmapi.dll"', |
46 '/DELAYLOAD:"uxtheme.dll"', | 46 '/DELAYLOAD:"uxtheme.dll"', |
47 | 47 |
48 '/MACHINE:X86', | 48 '/MACHINE:X86', |
49 '/FIXED:No', | 49 '/FIXED:No', |
(...skipping 14 matching lines...) Expand all Loading... |
64 | 64 |
65 input_files = [ | 65 input_files = [ |
66 '$CHROME_DIR/test/perf/mem_usage$OBJSUFFIX', | 66 '$CHROME_DIR/test/perf/mem_usage$OBJSUFFIX', |
67 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX', | 67 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX', |
68 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', | 68 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', |
69 'page_load_test.cc', | 69 'page_load_test.cc', |
70 'run_all_unittests.cc', | 70 'run_all_unittests.cc', |
71 ] | 71 ] |
72 | 72 |
73 env.ChromeTestProgram('reliability_tests', input_files) | 73 env.ChromeTestProgram('reliability_tests', input_files) |
OLD | NEW |