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

Side by Side Diff: chrome/test/interactive_ui/interactive_ui_tests.scons

Issue 15051: Convert from using env['PLATFORM'] directly to using the more flexible... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years 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
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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 'test_chrome_plugin', 55 'test_chrome_plugin',
56 'util', 56 'util',
57 'views', 57 'views',
58 'v8_snapshot', 58 'v8_snapshot',
59 'V8Bindings', 59 'V8Bindings',
60 'WebCore', 60 'WebCore',
61 'WTF', 61 'WTF',
62 ], 62 ],
63 ) 63 )
64 64
65 if env['PLATFORM'] == 'win32': 65 if env.Bit('windows'):
66 env.Prepend( 66 env.Prepend(
67 LINKFLAGS = [ 67 LINKFLAGS = [
68 '/INCREMENTAL', 68 '/INCREMENTAL',
69 '/DEBUG', 69 '/DEBUG',
70 70
71 '/DELAYLOAD:"dwmapi.dll"', 71 '/DELAYLOAD:"dwmapi.dll"',
72 '/DELAYLOAD:"uxtheme.dll"', 72 '/DELAYLOAD:"uxtheme.dll"',
73 73
74 '/MACHINE:X86', 74 '/MACHINE:X86',
75 '/FIXED:No', 75 '/FIXED:No',
(...skipping 22 matching lines...) Expand all
98 '$CHROME_DIR/test/testing_profile$OBJSUFFIX', 98 '$CHROME_DIR/test/testing_profile$OBJSUFFIX',
99 '$CHROME_DIR/test/ui/npapi_test_helper$OBJSUFFIX', 99 '$CHROME_DIR/test/ui/npapi_test_helper$OBJSUFFIX',
100 '$CHROME_DIR/test/ui/run_all_unittests$OBJSUFFIX', 100 '$CHROME_DIR/test/ui/run_all_unittests$OBJSUFFIX',
101 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX', 101 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX',
102 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', 102 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX',
103 103
104 'view_event_test_base.cc', 104 'view_event_test_base.cc',
105 ] 105 ]
106 106
107 env.ChromeTestProgram('interactive_ui_tests', input_files) 107 env.ChromeTestProgram('interactive_ui_tests', input_files)
OLDNEW
« no previous file with comments | « chrome/test/chrome_plugin/test_chrome_plugin.scons ('k') | chrome/test/memory_test/memory_test.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698