| OLD | NEW |
| 1 #!/usr/bin/python2.4 | 1 #!/usr/bin/python2.4 |
| 2 # Copyright 2009, Google Inc. | 2 # Copyright 2009, Google Inc. |
| 3 # All rights reserved. | 3 # All rights reserved. |
| 4 # | 4 # |
| 5 # Redistribution and use in source and binary forms, with or without | 5 # Redistribution and use in source and binary forms, with or without |
| 6 # modification, are permitted provided that the following conditions are | 6 # modification, are permitted provided that the following conditions are |
| 7 # met: | 7 # met: |
| 8 # | 8 # |
| 9 # * Redistributions of source code must retain the above copyright | 9 # * Redistributions of source code must retain the above copyright |
| 10 # notice, this list of conditions and the following disclaimer. | 10 # notice, this list of conditions and the following disclaimer. |
| (...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 546 COMPONENT_TEST_TIMEOUT={'large': 900, 'medium': 450, 'small': 180}, | 546 COMPONENT_TEST_TIMEOUT={'large': 900, 'medium': 450, 'small': 180}, |
| 547 # Tests are enabled by default | 547 # Tests are enabled by default |
| 548 COMPONENT_TEST_ENABLED=True, | 548 COMPONENT_TEST_ENABLED=True, |
| 549 # Static linking is a sensible default | 549 # Static linking is a sensible default |
| 550 COMPONENT_STATIC=True, | 550 COMPONENT_STATIC=True, |
| 551 # Don't publish libraries to the staging dir by themselves by default. | 551 # Don't publish libraries to the staging dir by themselves by default. |
| 552 COMPONENT_LIBRARY_PUBLISH=False, | 552 COMPONENT_LIBRARY_PUBLISH=False, |
| 553 ) | 553 ) |
| 554 env.Append( | 554 env.Append( |
| 555 LIBPATH=['$LIB_DIR'], | 555 LIBPATH=['$LIB_DIR'], |
| 556 RPATH=['$LIB_DIR'], | |
| 557 | 556 |
| 558 # Default alias groups for component builders | 557 # Default alias groups for component builders |
| 559 COMPONENT_PACKAGE_GROUPS=['all_packages'], | 558 COMPONENT_PACKAGE_GROUPS=['all_packages'], |
| 560 COMPONENT_LIBRARY_GROUPS=['all_libraries'], | 559 COMPONENT_LIBRARY_GROUPS=['all_libraries'], |
| 561 COMPONENT_PROGRAM_GROUPS=['all_programs'], | 560 COMPONENT_PROGRAM_GROUPS=['all_programs'], |
| 562 COMPONENT_TEST_PROGRAM_GROUPS=['all_test_programs'], | 561 COMPONENT_TEST_PROGRAM_GROUPS=['all_test_programs'], |
| 563 COMPONENT_TEST_OUTPUT_GROUPS=['run_all_tests'], | 562 COMPONENT_TEST_OUTPUT_GROUPS=['run_all_tests'], |
| 564 | 563 |
| 565 # Additional components whose resources should be copied into program | 564 # Additional components whose resources should be copied into program |
| 566 # directories, in addition to those from LIBS and the program itself. | 565 # directories, in addition to those from LIBS and the program itself. |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 610 AddTargetGroup('all_libraries', 'libraries can be built') | 609 AddTargetGroup('all_libraries', 'libraries can be built') |
| 611 AddTargetGroup('all_programs', 'programs can be built') | 610 AddTargetGroup('all_programs', 'programs can be built') |
| 612 AddTargetGroup('all_test_programs', 'tests can be built') | 611 AddTargetGroup('all_test_programs', 'tests can be built') |
| 613 AddTargetGroup('all_packages', 'packages can be built') | 612 AddTargetGroup('all_packages', 'packages can be built') |
| 614 AddTargetGroup('run_all_tests', 'tests can be run') | 613 AddTargetGroup('run_all_tests', 'tests can be run') |
| 615 AddTargetGroup('run_disabled_tests', 'tests are disabled') | 614 AddTargetGroup('run_disabled_tests', 'tests are disabled') |
| 616 AddTargetGroup('run_small_tests', 'small tests can be run') | 615 AddTargetGroup('run_small_tests', 'small tests can be run') |
| 617 AddTargetGroup('run_medium_tests', 'medium tests can be run') | 616 AddTargetGroup('run_medium_tests', 'medium tests can be run') |
| 618 AddTargetGroup('run_large_tests', 'large tests can be run') | 617 AddTargetGroup('run_large_tests', 'large tests can be run') |
| 619 | 618 |
| OLD | NEW |