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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 'oleacc', | 56 'oleacc', |
57 'rpcrt4', | 57 'rpcrt4', |
58 'winmm', | 58 'winmm', |
59 ], | 59 ], |
60 ) | 60 ) |
61 | 61 |
62 input_files = [ | 62 input_files = [ |
63 '$CHROME_DIR/test/ui/run_all_unittests$OBJSUFFIX', | 63 '$CHROME_DIR/test/ui/run_all_unittests$OBJSUFFIX', |
64 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX', | 64 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX', |
65 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', | 65 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', |
66 '$CHROME_DIR/test/test_file_util$OBJSUFFIX', | |
67 'feature_startup_test.cc', | 66 'feature_startup_test.cc', |
68 'startup_test.cc', | 67 'startup_test.cc', |
69 ] | 68 ] |
70 | 69 |
71 env.ChromeTestProgram('startup_tests', input_files) | 70 env.ChromeTestProgram('startup_tests', input_files) |
OLD | NEW |