OLD | NEW |
1 #!/usr/bin/python2.4 | 1 #!/usr/bin/env python |
2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 # | 5 # |
6 # Redistribution and use in source and binary forms, with or without | 6 # Redistribution and use in source and binary forms, with or without |
7 # modification, are permitted provided that the following conditions are | 7 # modification, are permitted provided that the following conditions are |
8 # met: | 8 # met: |
9 # | 9 # |
10 # * Redistributions of source code must retain the above copyright | 10 # * Redistributions of source code must retain the above copyright |
11 # notice, this list of conditions and the following disclaimer. | 11 # notice, this list of conditions and the following disclaimer. |
(...skipping 633 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
645 # Add our target groups | 645 # Add our target groups |
646 AddTargetGroup('all_libraries', 'libraries can be built') | 646 AddTargetGroup('all_libraries', 'libraries can be built') |
647 AddTargetGroup('all_programs', 'programs can be built') | 647 AddTargetGroup('all_programs', 'programs can be built') |
648 AddTargetGroup('all_test_programs', 'tests can be built') | 648 AddTargetGroup('all_test_programs', 'tests can be built') |
649 AddTargetGroup('all_packages', 'packages can be built') | 649 AddTargetGroup('all_packages', 'packages can be built') |
650 AddTargetGroup('run_all_tests', 'tests can be run') | 650 AddTargetGroup('run_all_tests', 'tests can be run') |
651 AddTargetGroup('run_disabled_tests', 'tests are disabled') | 651 AddTargetGroup('run_disabled_tests', 'tests are disabled') |
652 AddTargetGroup('run_small_tests', 'small tests can be run') | 652 AddTargetGroup('run_small_tests', 'small tests can be run') |
653 AddTargetGroup('run_medium_tests', 'medium tests can be run') | 653 AddTargetGroup('run_medium_tests', 'medium tests can be run') |
654 AddTargetGroup('run_large_tests', 'large tests can be run') | 654 AddTargetGroup('run_large_tests', 'large tests can be run') |
OLD | NEW |