| 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 1973 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1984 'src/shared/srpc/build.scons', | 1984 'src/shared/srpc/build.scons', |
| 1985 'src/shared/utils/build.scons', | 1985 'src/shared/utils/build.scons', |
| 1986 'src/third_party_mod/gtest/build.scons', | 1986 'src/third_party_mod/gtest/build.scons', |
| 1987 'src/third_party_mod/jsoncpp/build.scons', | 1987 'src/third_party_mod/jsoncpp/build.scons', |
| 1988 'src/tools/validator_tools/build.scons', | 1988 'src/tools/validator_tools/build.scons', |
| 1989 'src/trusted/debug_stub/build.scons', | 1989 'src/trusted/debug_stub/build.scons', |
| 1990 'src/trusted/desc/build.scons', | 1990 'src/trusted/desc/build.scons', |
| 1991 'src/trusted/gdb_rsp/build.scons', | 1991 'src/trusted/gdb_rsp/build.scons', |
| 1992 'src/trusted/gio/build.scons', | 1992 'src/trusted/gio/build.scons', |
| 1993 'src/trusted/handle_pass/build.scons', | 1993 'src/trusted/handle_pass/build.scons', |
| 1994 'src/trusted/manifest_name_service_proxy/build.scons', |
| 1994 'src/trusted/nacl_base/build.scons', | 1995 'src/trusted/nacl_base/build.scons', |
| 1995 'src/trusted/nonnacl_util/build.scons', | 1996 'src/trusted/nonnacl_util/build.scons', |
| 1996 'src/trusted/perf_counter/build.scons', | 1997 'src/trusted/perf_counter/build.scons', |
| 1997 'src/trusted/platform_qualify/build.scons', | 1998 'src/trusted/platform_qualify/build.scons', |
| 1998 'src/trusted/plugin/build.scons', | 1999 'src/trusted/plugin/build.scons', |
| 1999 'src/trusted/python_bindings/build.scons', | 2000 'src/trusted/python_bindings/build.scons', |
| 2000 'src/trusted/reverse_service/build.scons', | 2001 'src/trusted/reverse_service/build.scons', |
| 2001 'src/trusted/sel_universal/build.scons', | 2002 'src/trusted/sel_universal/build.scons', |
| 2002 'src/trusted/service_runtime/build.scons', | 2003 'src/trusted/service_runtime/build.scons', |
| 2003 'src/trusted/simple_service/build.scons', | 2004 'src/trusted/simple_service/build.scons', |
| (...skipping 1186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3190 Default(['all_programs', 'all_bundles', 'all_test_programs', 'all_libraries']) | 3191 Default(['all_programs', 'all_bundles', 'all_test_programs', 'all_libraries']) |
| 3191 | 3192 |
| 3192 if BROKEN_TEST_COUNT > 0: | 3193 if BROKEN_TEST_COUNT > 0: |
| 3193 msg = "There are %d broken tests." % BROKEN_TEST_COUNT | 3194 msg = "There are %d broken tests." % BROKEN_TEST_COUNT |
| 3194 if GetOption('brief_comstr'): | 3195 if GetOption('brief_comstr'): |
| 3195 msg += " Add --verbose to the command line for more information." | 3196 msg += " Add --verbose to the command line for more information." |
| 3196 print msg | 3197 print msg |
| 3197 | 3198 |
| 3198 # separate warnings from actual build output | 3199 # separate warnings from actual build output |
| 3199 Banner('B U I L D - O U T P U T:') | 3200 Banner('B U I L D - O U T P U T:') |
| OLD | NEW |