| 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 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 sconscript_files.append('third_party/hunspell/SConscript') | 405 sconscript_files.append('third_party/hunspell/SConscript') |
| 406 if not env.WantSystemLib('sqlite'): | 406 if not env.WantSystemLib('sqlite'): |
| 407 sconscript_files.append('$THIRD_PARTY_DIR/sqlite/SConscript') | 407 sconscript_files.append('$THIRD_PARTY_DIR/sqlite/SConscript') |
| 408 | 408 |
| 409 # TODO(port) | 409 # TODO(port) |
| 410 if env['PLATFORM'] == 'win32': | 410 if env['PLATFORM'] == 'win32': |
| 411 sconscript_files.extend([ | 411 sconscript_files.extend([ |
| 412 'app/resources/SConscript', | 412 'app/resources/SConscript', |
| 413 'app/theme/SConscript', | 413 'app/theme/SConscript', |
| 414 'browser/views/SConscript', | 414 'browser/views/SConscript', |
| 415 'installer/mini_installer/SConscript', | 415 'installer/mini_installer/mini_installer.scons', |
| 416 'installer/setup/SConscript', | 416 'installer/mini_installer/installer_unittests.scons', |
| 417 'installer/util/SConscript', | 417 'installer/setup/setup.scons', |
| 418 'installer/util/util.scons', |
| 418 'test/activex_test_control/activex_test_control.scons', | 419 'test/activex_test_control/activex_test_control.scons', |
| 419 'test/automation/automation.scons', | 420 'test/automation/automation.scons', |
| 420 'test/memory_test/memory_test.scons', | 421 'test/memory_test/memory_test.scons', |
| 421 'test/mini_installer_test/mini_installer_test.scons', | 422 'test/mini_installer_test/mini_installer_test.scons', |
| 422 'test/page_cycler/page_cycler_tests.scons', | 423 'test/page_cycler/page_cycler_tests.scons', |
| 423 'test/plugin/plugin_tests.scons', | 424 'test/plugin/plugin_tests.scons', |
| 424 'test/reliability/reliability_tests.scons', | 425 'test/reliability/reliability_tests.scons', |
| 425 'test/security_tests/security_tests.scons', | 426 'test/security_tests/security_tests.scons', |
| 426 'test/selenium/selenium_tests.scons', | 427 'test/selenium/selenium_tests.scons', |
| 427 'test/startup/startup_tests.scons', | 428 'test/startup/startup_tests.scons', |
| (...skipping 26 matching lines...) Expand all Loading... |
| 454 env.Alias('chrome', i) | 455 env.Alias('chrome', i) |
| 455 | 456 |
| 456 | 457 |
| 457 i = env.Command('$TARGET_ROOT/resources/inspector', | 458 i = env.Command('$TARGET_ROOT/resources/inspector', |
| 458 '$CHROME_SRC_DIR/webkit/port/page/inspector', | 459 '$CHROME_SRC_DIR/webkit/port/page/inspector', |
| 459 Copy('$TARGET', '$SOURCE'), | 460 Copy('$TARGET', '$SOURCE'), |
| 460 source_scanner=DirScanner) | 461 source_scanner=DirScanner) |
| 461 env.Alias('chrome', i) | 462 env.Alias('chrome', i) |
| 462 | 463 |
| 463 env.Alias('chrome', env.Alias('webkit')) | 464 env.Alias('chrome', env.Alias('webkit')) |
| OLD | NEW |