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