| 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 import shutil | 6 import shutil |
| 7 import sys | 7 import sys |
| 8 | 8 |
| 9 | 9 |
| 10 p = ARGUMENTS.get('PROGRESS') | 10 p = ARGUMENTS.get('PROGRESS') |
| (...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 | 458 |
| 459 if LoadComponent('base'): | 459 if LoadComponent('base'): |
| 460 sconscripts.append('$BASE_DIR/SConscript') | 460 sconscripts.append('$BASE_DIR/SConscript') |
| 461 | 461 |
| 462 if LoadComponent('breakpad'): | 462 if LoadComponent('breakpad'): |
| 463 sconscripts.append('$BREAKPAD_DIR/SConscript') | 463 sconscripts.append('$BREAKPAD_DIR/SConscript') |
| 464 | 464 |
| 465 if LoadComponent('chrome'): | 465 if LoadComponent('chrome'): |
| 466 sconscripts.append('$CHROME_DIR/SConscript') | 466 sconscripts.append('$CHROME_DIR/SConscript') |
| 467 | 467 |
| 468 if LoadComponent('gears'): |
| 469 sconscripts.append('$GEARS_DIR/SConscript') |
| 470 |
| 468 if LoadComponent('google_update'): | 471 if LoadComponent('google_update'): |
| 469 sconscripts.append('$GOOGLE_UPDATE_DIR/SConscript') | 472 sconscripts.append('$GOOGLE_UPDATE_DIR/SConscript') |
| 470 | 473 |
| 471 if LoadComponent('googleurl'): | 474 if LoadComponent('googleurl'): |
| 472 env.SConscript('SConscript.googleurl', | 475 env.SConscript('SConscript.googleurl', |
| 473 duplicate=0, | 476 duplicate=0, |
| 474 variant_dir='$GOOGLEURL_DIR', | 477 variant_dir='$GOOGLEURL_DIR', |
| 475 src_dir='../googleurl', | 478 src_dir='../googleurl', |
| 476 exports=['env']) | 479 exports=['env']) |
| 477 | 480 |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 546 initial_indent = ' '*32, | 549 initial_indent = ' '*32, |
| 547 subsequent_indent = ' '*32, | 550 subsequent_indent = ' '*32, |
| 548 ) | 551 ) |
| 549 components = tw.fill(', '.join(components)) | 552 components = tw.fill(', '.join(components)) |
| 550 | 553 |
| 551 Help(help_fmt % components) | 554 Help(help_fmt % components) |
| 552 | 555 |
| 553 | 556 |
| 554 Import('build_component') | 557 Import('build_component') |
| 555 Default(build_component) | 558 Default(build_component) |
| OLD | NEW |