OLD | NEW |
---|---|
1 # Copyright 2008, Google Inc. | 1 # Copyright 2008, Google Inc. |
2 # All rights reserved. | 2 # All rights reserved. |
3 # | 3 # |
4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
6 # met: | 6 # met: |
7 # | 7 # |
8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
453 | 453 |
454 if LoadComponent('skia'): | 454 if LoadComponent('skia'): |
455 sconscripts.append('$SKIA_DIR/SConscript') | 455 sconscripts.append('$SKIA_DIR/SConscript') |
456 | 456 |
457 if LoadComponent('testing'): | 457 if LoadComponent('testing'): |
458 sconscripts.append('$TESTING_DIR/SConscript.gtest') | 458 sconscripts.append('$TESTING_DIR/SConscript.gtest') |
459 | 459 |
460 if LoadComponent('third_party'): | 460 if LoadComponent('third_party'): |
461 sconscripts.extend([ | 461 sconscripts.extend([ |
462 '$BSDIFF_DIR/SConscript', | 462 '$BSDIFF_DIR/SConscript', |
463 '$BSPATCH_DIR/SConscript', | |
sgk
2008/09/08 18:38:57
Unconditionally removing $BSPATCH_DIR/SConscript f
| |
464 '$BZIP2_DIR/SConscript', | 463 '$BZIP2_DIR/SConscript', |
465 '$ICU38_DIR/SConscript', | 464 '$ICU38_DIR/SConscript', |
466 '$LIBJPEG_DIR/SConscript', | 465 '$LIBJPEG_DIR/SConscript', |
467 '$LIBPNG_DIR/SConscript', | 466 '$LIBPNG_DIR/SConscript', |
468 '$LIBXML_DIR/SConscript', | 467 '$LIBXML_DIR/SConscript', |
469 '$LIBXSLT_DIR/SConscript', | 468 '$LIBXSLT_DIR/SConscript', |
470 '$LZMA_SDK_DIR/SConscript', | 469 '$LZMA_SDK_DIR/SConscript', |
471 '$MODP_B64_DIR/SConscript', | 470 '$MODP_B64_DIR/SConscript', |
472 '$ZLIB_DIR/SConscript', | 471 '$ZLIB_DIR/SConscript', |
473 ]) | 472 ]) |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
505 initial_indent = ' '*32, | 504 initial_indent = ' '*32, |
506 subsequent_indent = ' '*32, | 505 subsequent_indent = ' '*32, |
507 ) | 506 ) |
508 components = tw.fill(', '.join(components)) | 507 components = tw.fill(', '.join(components)) |
509 | 508 |
510 Help(help_fmt % components) | 509 Help(help_fmt % components) |
511 | 510 |
512 | 511 |
513 Import('build_component') | 512 Import('build_component') |
514 Default(build_component) | 513 Default(build_component) |
OLD | NEW |