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 os | 5 import os |
6 | 6 |
7 Import(['env']) | 7 Import(['env']) |
8 | 8 |
9 env_res = env.Clone() | 9 env_res = env.Clone() |
10 env_test = env.Clone() | 10 env_test = env.Clone() |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 libs = [ | 173 libs = [ |
174 'browser/browser.lib', | 174 'browser/browser.lib', |
175 'browser/views/browser_views.lib', | 175 'browser/views/browser_views.lib', |
176 'browser/debugger/debugger.lib', | 176 'browser/debugger/debugger.lib', |
177 'common/common.lib', | 177 'common/common.lib', |
178 'installer/util/util.lib', | 178 'installer/util/util.lib', |
179 'libjscre.lib', | 179 'libjscre.lib', |
180 'plugin/plugin.lib', | 180 'plugin/plugin.lib', |
181 'renderer/renderer.lib', | 181 'renderer/renderer.lib', |
182 'third_party/hunspell/hunspell.lib', | 182 'third_party/hunspell/hunspell.lib', |
| 183 'third_party/libevent/libevent.lib', |
183 'third_party/sqlite/sqlite.lib', | 184 'third_party/sqlite/sqlite.lib', |
184 'views/views.lib', | 185 'views/views.lib', |
185 '$V8_DIR/v8.lib', | 186 '$V8_DIR/v8.lib', |
186 '$V8_DIR/snapshot-empty.obj', | 187 '$V8_DIR/snapshot-empty.obj', |
187 ] | 188 ] |
188 | 189 |
189 if env['PLATFORM'] == 'win32': | 190 if env['PLATFORM'] == 'win32': |
190 targets = [ | 191 targets = [ |
191 'chrome.dll', | 192 'chrome.dll', |
192 'chrome_dll.pdb', | 193 'chrome_dll.pdb', |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
432 'test/plugin/SConscript', | 433 'test/plugin/SConscript', |
433 'test/reliability/SConscript', | 434 'test/reliability/SConscript', |
434 'test/security_tests/SConscript', | 435 'test/security_tests/SConscript', |
435 'test/selenium/SConscript', | 436 'test/selenium/SConscript', |
436 'test/startup/SConscript', | 437 'test/startup/SConscript', |
437 'test/tab_switching/SConscript', | 438 'test/tab_switching/SConscript', |
438 'tools/crash_service/SConscript', | 439 'tools/crash_service/SConscript', |
439 'tools/perf/flush_cache/SConscript', | 440 'tools/perf/flush_cache/SConscript', |
440 'tools/test/image_diff/SConscript', | 441 'tools/test/image_diff/SConscript', |
441 'third_party/hunspell/SConscript', | 442 'third_party/hunspell/SConscript', |
| 443 'third_party/libevent/SConscript', |
442 'third_party/sqlite/SConscript', | 444 'third_party/sqlite/SConscript', |
443 'views/SConscript', | 445 'views/SConscript', |
444 ] | 446 ] |
445 | 447 |
446 env.SConscript(sconscript_files, exports=['env', 'env_res', 'env_test']) | 448 env.SConscript(sconscript_files, exports=['env', 'env_res', 'env_test']) |
447 | 449 |
448 | 450 |
449 env.InstallAs('libjscre.lib', '$WEBKIT_DIR/JavaScriptCore_pcre.lib') | 451 env.InstallAs('libjscre.lib', '$WEBKIT_DIR/JavaScriptCore_pcre.lib') |
450 | 452 |
451 | 453 |
(...skipping 11 matching lines...) Expand all Loading... |
463 | 465 |
464 | 466 |
465 i = env.Command('$TARGET_ROOT/resources/inspector', | 467 i = env.Command('$TARGET_ROOT/resources/inspector', |
466 '#/../webkit/port/page/inspector', | 468 '#/../webkit/port/page/inspector', |
467 Copy('$TARGET', '$SOURCE'), | 469 Copy('$TARGET', '$SOURCE'), |
468 source_scanner=DirScanner) | 470 source_scanner=DirScanner) |
469 env.Alias('chrome', i) | 471 env.Alias('chrome', i) |
470 | 472 |
471 env.Alias('chrome', env.Alias('webkit')) | 473 env.Alias('chrome', env.Alias('webkit')) |
472 | 474 |
OLD | NEW |