| OLD | NEW |
| 1 #! -*- python -*- | 1 #! -*- python -*- |
| 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2012 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 os | 7 import os |
| 8 import platform | 8 import platform |
| 9 import re | 9 import re |
| 10 import subprocess | 10 import subprocess |
| (...skipping 1948 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1959 | 1959 |
| 1960 base_env.Append(BUILD_SCONSCRIPTS = [ | 1960 base_env.Append(BUILD_SCONSCRIPTS = [ |
| 1961 # KEEP THIS SORTED PLEASE | 1961 # KEEP THIS SORTED PLEASE |
| 1962 'build/build.scons', | 1962 'build/build.scons', |
| 1963 'pnacl/driver/tests/build.scons', | 1963 'pnacl/driver/tests/build.scons', |
| 1964 'toolchain_build/build.scons', | 1964 'toolchain_build/build.scons', |
| 1965 'src/shared/gio/build.scons', | 1965 'src/shared/gio/build.scons', |
| 1966 'src/shared/imc/build.scons', | 1966 'src/shared/imc/build.scons', |
| 1967 'src/shared/ldr/build.scons', | 1967 'src/shared/ldr/build.scons', |
| 1968 'src/shared/platform/build.scons', | 1968 'src/shared/platform/build.scons', |
| 1969 'src/shared/serialization/build.scons', |
| 1969 'src/shared/srpc/build.scons', | 1970 'src/shared/srpc/build.scons', |
| 1970 'src/shared/utils/build.scons', | 1971 'src/shared/utils/build.scons', |
| 1971 'src/third_party_mod/gtest/build.scons', | 1972 'src/third_party_mod/gtest/build.scons', |
| 1972 'src/tools/validator_tools/build.scons', | 1973 'src/tools/validator_tools/build.scons', |
| 1973 'src/trusted/cpu_features/build.scons', | 1974 'src/trusted/cpu_features/build.scons', |
| 1974 'src/trusted/debug_stub/build.scons', | 1975 'src/trusted/debug_stub/build.scons', |
| 1975 'src/trusted/desc/build.scons', | 1976 'src/trusted/desc/build.scons', |
| 1976 'src/trusted/fault_injection/build.scons', | 1977 'src/trusted/fault_injection/build.scons', |
| 1977 'src/trusted/generic_container/build.scons', | 1978 'src/trusted/generic_container/build.scons', |
| 1978 'src/trusted/gio/build.scons', | 1979 'src/trusted/gio/build.scons', |
| (...skipping 1601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3580 nacl_env.ValidateSdk() | 3581 nacl_env.ValidateSdk() |
| 3581 | 3582 |
| 3582 if BROKEN_TEST_COUNT > 0: | 3583 if BROKEN_TEST_COUNT > 0: |
| 3583 msg = "There are %d broken tests." % BROKEN_TEST_COUNT | 3584 msg = "There are %d broken tests." % BROKEN_TEST_COUNT |
| 3584 if GetOption('brief_comstr'): | 3585 if GetOption('brief_comstr'): |
| 3585 msg += " Add --verbose to the command line for more information." | 3586 msg += " Add --verbose to the command line for more information." |
| 3586 print msg | 3587 print msg |
| 3587 | 3588 |
| 3588 # separate warnings from actual build output | 3589 # separate warnings from actual build output |
| 3589 Banner('B U I L D - O U T P U T:') | 3590 Banner('B U I L D - O U T P U T:') |
| OLD | NEW |