| 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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 test_sconscript_files.extend([ | 428 test_sconscript_files.extend([ |
| 429 'SConscript.automated_ui_tests', | 429 'SConscript.automated_ui_tests', |
| 430 'SConscript.ui_tests', | 430 'SConscript.ui_tests', |
| 431 ]) | 431 ]) |
| 432 | 432 |
| 433 env.SConscript(test_sconscript_files, exports=['env_test']) | 433 env.SConscript(test_sconscript_files, exports=['env_test']) |
| 434 | 434 |
| 435 sconscript_files = [ | 435 sconscript_files = [ |
| 436 'browser/SConscript', | 436 'browser/SConscript', |
| 437 'common/SConscript', | 437 'common/SConscript', |
| 438 'test/chrome_plugin/SConscript', |
| 438 'third_party/hunspell/SConscript', | 439 'third_party/hunspell/SConscript', |
| 439 '$THIRD_PARTY_DIR/sqlite/SConscript', | 440 '$THIRD_PARTY_DIR/sqlite/SConscript', |
| 440 ] | 441 ] |
| 441 | 442 |
| 442 # TODO(port) | 443 # TODO(port) |
| 443 if env['PLATFORM'] == 'win32': | 444 if env['PLATFORM'] == 'win32': |
| 444 sconscript_files.extend([ | 445 sconscript_files.extend([ |
| 445 'app/resources/SConscript', | 446 'app/resources/SConscript', |
| 446 'app/theme/SConscript', | 447 'app/theme/SConscript', |
| 447 'browser/views/SConscript', | 448 'browser/views/SConscript', |
| 448 'installer/mini_installer/SConscript', | 449 'installer/mini_installer/SConscript', |
| 449 'installer/setup/SConscript', | 450 'installer/setup/SConscript', |
| 450 'installer/util/SConscript', | 451 'installer/util/SConscript', |
| 451 'plugin/SConscript', | 452 'plugin/SConscript', |
| 452 'renderer/SConscript', | 453 'renderer/SConscript', |
| 453 'test/activex_test_control/SConscript', | 454 'test/activex_test_control/SConscript', |
| 454 'test/automation/SConscript', | 455 'test/automation/SConscript', |
| 455 'test/chrome_plugin/SConscript', | |
| 456 'test/interactive_ui/SConscript', | 456 'test/interactive_ui/SConscript', |
| 457 'test/memory_test/SConscript', | 457 'test/memory_test/SConscript', |
| 458 'test/mini_installer_test/SConscript', | 458 'test/mini_installer_test/SConscript', |
| 459 'test/page_cycler/SConscript', | 459 'test/page_cycler/SConscript', |
| 460 'test/plugin/SConscript', | 460 'test/plugin/SConscript', |
| 461 'test/reliability/SConscript', | 461 'test/reliability/SConscript', |
| 462 'test/security_tests/SConscript', | 462 'test/security_tests/SConscript', |
| 463 'test/selenium/SConscript', | 463 'test/selenium/SConscript', |
| 464 'test/startup/SConscript', | 464 'test/startup/SConscript', |
| 465 'test/tab_switching/SConscript', | 465 'test/tab_switching/SConscript', |
| (...skipping 25 matching lines...) Expand all Loading... |
| 491 env.Alias('chrome', i) | 491 env.Alias('chrome', i) |
| 492 | 492 |
| 493 | 493 |
| 494 i = env.Command('$TARGET_ROOT/resources/inspector', | 494 i = env.Command('$TARGET_ROOT/resources/inspector', |
| 495 '#/../webkit/port/page/inspector', | 495 '#/../webkit/port/page/inspector', |
| 496 Copy('$TARGET', '$SOURCE'), | 496 Copy('$TARGET', '$SOURCE'), |
| 497 source_scanner=DirScanner) | 497 source_scanner=DirScanner) |
| 498 env.Alias('chrome', i) | 498 env.Alias('chrome', i) |
| 499 | 499 |
| 500 env.Alias('chrome', env.Alias('webkit')) | 500 env.Alias('chrome', env.Alias('webkit')) |
| OLD | NEW |