| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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) |
| OLD | NEW |