OLD | NEW |
1 # -*- python -*- | 1 # -*- 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 import atexit | 6 import atexit |
7 import glob | 7 import glob |
8 import os | 8 import os |
9 import platform | 9 import platform |
10 import stat | 10 import stat |
(...skipping 1937 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1948 'src/shared/srpc/build.scons', | 1948 'src/shared/srpc/build.scons', |
1949 'src/shared/utils/build.scons', | 1949 'src/shared/utils/build.scons', |
1950 'src/third_party_mod/gtest/build.scons', | 1950 'src/third_party_mod/gtest/build.scons', |
1951 'src/third_party_mod/jsoncpp/build.scons', | 1951 'src/third_party_mod/jsoncpp/build.scons', |
1952 'src/tools/validator_tools/build.scons', | 1952 'src/tools/validator_tools/build.scons', |
1953 'src/trusted/debug_stub/build.scons', | 1953 'src/trusted/debug_stub/build.scons', |
1954 'src/trusted/desc/build.scons', | 1954 'src/trusted/desc/build.scons', |
1955 'src/trusted/gdb_rsp/build.scons', | 1955 'src/trusted/gdb_rsp/build.scons', |
1956 'src/trusted/gio/build.scons', | 1956 'src/trusted/gio/build.scons', |
1957 'src/trusted/handle_pass/build.scons', | 1957 'src/trusted/handle_pass/build.scons', |
| 1958 'src/trusted/manifest_name_service_proxy/build.scons', |
1958 'src/trusted/nacl_base/build.scons', | 1959 'src/trusted/nacl_base/build.scons', |
1959 'src/trusted/nonnacl_util/build.scons', | 1960 'src/trusted/nonnacl_util/build.scons', |
1960 'src/trusted/perf_counter/build.scons', | 1961 'src/trusted/perf_counter/build.scons', |
1961 'src/trusted/platform_qualify/build.scons', | 1962 'src/trusted/platform_qualify/build.scons', |
1962 'src/trusted/plugin/build.scons', | 1963 'src/trusted/plugin/build.scons', |
1963 'src/trusted/python_bindings/build.scons', | 1964 'src/trusted/python_bindings/build.scons', |
1964 'src/trusted/reverse_service/build.scons', | 1965 'src/trusted/reverse_service/build.scons', |
1965 'src/trusted/sel_universal/build.scons', | 1966 'src/trusted/sel_universal/build.scons', |
1966 'src/trusted/service_runtime/build.scons', | 1967 'src/trusted/service_runtime/build.scons', |
1967 'src/trusted/simple_service/build.scons', | 1968 'src/trusted/simple_service/build.scons', |
(...skipping 1172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3140 Default(['all_programs', 'all_bundles', 'all_test_programs', 'all_libraries']) | 3141 Default(['all_programs', 'all_bundles', 'all_test_programs', 'all_libraries']) |
3141 | 3142 |
3142 if BROKEN_TEST_COUNT > 0: | 3143 if BROKEN_TEST_COUNT > 0: |
3143 msg = "There are %d broken tests." % BROKEN_TEST_COUNT | 3144 msg = "There are %d broken tests." % BROKEN_TEST_COUNT |
3144 if GetOption('brief_comstr'): | 3145 if GetOption('brief_comstr'): |
3145 msg += " Add --verbose to the command line for more information." | 3146 msg += " Add --verbose to the command line for more information." |
3146 print msg | 3147 print msg |
3147 | 3148 |
3148 # separate warnings from actual build output | 3149 # separate warnings from actual build output |
3149 Banner('B U I L D - O U T P U T:') | 3150 Banner('B U I L D - O U T P U T:') |
OLD | NEW |