Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(605)

Side by Side Diff: chrome/test/unit/unit_tests.scons

Issue 9242: Now that the unit_tests get built from a separate SConscript file,... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/SConscript ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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)
OLDNEW
« no previous file with comments | « chrome/SConscript ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698