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.SConscript([ | 9 env.SConscript([ |
10 '$BASE_DIR/gfx/using_base_gfx.scons', | 10 '$BASE_DIR/gfx/using_base_gfx.scons', |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 '$CHROME_DIR/views/focus_manager_unittest.cc', | 219 '$CHROME_DIR/views/focus_manager_unittest.cc', |
220 '$CHROME_DIR/views/grid_layout_unittest.cc', | 220 '$CHROME_DIR/views/grid_layout_unittest.cc', |
221 '$CHROME_DIR/views/table_view_unittest.cc', | 221 '$CHROME_DIR/views/table_view_unittest.cc', |
222 '$CHROME_DIR/views/view_unittest.cc', | 222 '$CHROME_DIR/views/view_unittest.cc', |
223 | 223 |
224 # Commented out for now because googleurl_tests doesn't build with | 224 # Commented out for now because googleurl_tests doesn't build with |
225 # gtest; see ../build/SConscript.googleurl. | 225 # gtest; see ../build/SConscript.googleurl. |
226 #'$GOOGLEURL_DIR/googleurl_tests.lib', | 226 #'$GOOGLEURL_DIR/googleurl_tests.lib', |
227 '$NET_DIR/url_request/url_request_test_job$OBJSUFFIX', | 227 '$NET_DIR/url_request/url_request_test_job$OBJSUFFIX', |
228 | 228 |
229 env['BROWSER_RES'], | 229 '$CHROME_DIR/browser/browser_resources.res', |
230 env['TEST_DATA_RES'], | 230 '$CHROME_DIR/test/data/resource.res', |
231 ]) | 231 ]) |
232 | 232 |
233 if env['PLATFORM'] in ('posix', 'win32'): | 233 if env['PLATFORM'] in ('posix', 'win32'): |
234 # TODO(port): This should work on all platforms. | 234 # TODO(port): This should work on all platforms. |
235 | 235 |
236 unit_tests = env.ChromeTestProgram('unit_tests', unit_test_files) | 236 unit_tests = env.ChromeTestProgram('unit_tests', unit_test_files) |
237 | 237 |
238 i = env.Install('$TARGET_ROOT', unit_tests) | 238 i = env.Install('$TARGET_ROOT', unit_tests) |
239 Alias('chrome', i) | 239 Alias('chrome', i) |
OLD | NEW |