| 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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 # TODO(port) | 392 # TODO(port) |
| 393 if env['PLATFORM'] == 'win32': | 393 if env['PLATFORM'] == 'win32': |
| 394 test_sconscript_files.extend([ | 394 test_sconscript_files.extend([ |
| 395 'SConscript.automated_ui_tests', | 395 'SConscript.automated_ui_tests', |
| 396 'SConscript.ui_tests', | 396 'SConscript.ui_tests', |
| 397 ]) | 397 ]) |
| 398 | 398 |
| 399 env.SConscript(test_sconscript_files, exports=['env_test']) | 399 env.SConscript(test_sconscript_files, exports=['env_test']) |
| 400 | 400 |
| 401 sconscript_files = [ | 401 sconscript_files = [ |
| 402 'browser/SConscript', | |
| 403 'common/SConscript', | 402 'common/SConscript', |
| 404 'plugin/SConscript', | 403 'plugin/SConscript', |
| 405 'renderer/SConscript', | 404 'renderer/SConscript', |
| 406 'test/chrome_plugin/SConscript', | 405 'test/chrome_plugin/SConscript', |
| 407 'third_party/hunspell/SConscript', | 406 'third_party/hunspell/SConscript', |
| 408 '$THIRD_PARTY_DIR/sqlite/SConscript', | 407 '$THIRD_PARTY_DIR/sqlite/SConscript', |
| 409 ] | 408 ] |
| 410 | 409 |
| 411 # TODO(port) | 410 # TODO(port) |
| 412 if env['PLATFORM'] == 'win32': | 411 if env['PLATFORM'] == 'win32': |
| 413 sconscript_files.extend([ | 412 sconscript_files.extend([ |
| 414 'app/resources/SConscript', | 413 'app/resources/SConscript', |
| 415 'app/theme/SConscript', | 414 'app/theme/SConscript', |
| 415 'browser/debugger/SConscript', |
| 416 'browser/views/SConscript', | 416 'browser/views/SConscript', |
| 417 'installer/mini_installer/SConscript', | 417 'installer/mini_installer/SConscript', |
| 418 'installer/setup/SConscript', | 418 'installer/setup/SConscript', |
| 419 'installer/util/SConscript', | 419 'installer/util/SConscript', |
| 420 'test/activex_test_control/SConscript', | 420 'test/activex_test_control/SConscript', |
| 421 'test/automation/SConscript', | 421 'test/automation/SConscript', |
| 422 'test/interactive_ui/SConscript', | 422 'test/interactive_ui/SConscript', |
| 423 'test/memory_test/SConscript', | 423 'test/memory_test/SConscript', |
| 424 'test/mini_installer_test/SConscript', | 424 'test/mini_installer_test/SConscript', |
| 425 'test/page_cycler/SConscript', | 425 'test/page_cycler/SConscript', |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 env.Alias('chrome', i) | 458 env.Alias('chrome', i) |
| 459 | 459 |
| 460 | 460 |
| 461 i = env.Command('$TARGET_ROOT/resources/inspector', | 461 i = env.Command('$TARGET_ROOT/resources/inspector', |
| 462 '$CHROME_SRC_DIR/webkit/port/page/inspector', | 462 '$CHROME_SRC_DIR/webkit/port/page/inspector', |
| 463 Copy('$TARGET', '$SOURCE'), | 463 Copy('$TARGET', '$SOURCE'), |
| 464 source_scanner=DirScanner) | 464 source_scanner=DirScanner) |
| 465 env.Alias('chrome', i) | 465 env.Alias('chrome', i) |
| 466 | 466 |
| 467 env.Alias('chrome', env.Alias('webkit')) | 467 env.Alias('chrome', env.Alias('webkit')) |
| OLD | NEW |