| 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 json | 7 import json |
| 8 import os | 8 import os |
| 9 import platform | 9 import platform |
| 10 import re | 10 import re |
| (...skipping 3218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3229 BUILD_SCONSCRIPTS = [ | 3229 BUILD_SCONSCRIPTS = [ |
| 3230 #### ALPHABETICALLY SORTED #### | 3230 #### ALPHABETICALLY SORTED #### |
| 3231 'src/untrusted/pthread/nacl.scons', | 3231 'src/untrusted/pthread/nacl.scons', |
| 3232 'src/untrusted/stubs/nacl.scons', | 3232 'src/untrusted/stubs/nacl.scons', |
| 3233 'src/untrusted/nosys/nacl.scons', | 3233 'src/untrusted/nosys/nacl.scons', |
| 3234 #### ALPHABETICALLY SORTED #### | 3234 #### ALPHABETICALLY SORTED #### |
| 3235 ]) | 3235 ]) |
| 3236 nacl_env.Append( | 3236 nacl_env.Append( |
| 3237 BUILD_SCONSCRIPTS = [ | 3237 BUILD_SCONSCRIPTS = [ |
| 3238 #### ALPHABETICALLY SORTED #### | 3238 #### ALPHABETICALLY SORTED #### |
| 3239 'src/minsfi/untrusted/nacl.scons', |
| 3239 'src/nonsfi/irt/build.scons', | 3240 'src/nonsfi/irt/build.scons', |
| 3240 'src/nonsfi/linux/nacl.scons', | 3241 'src/nonsfi/linux/nacl.scons', |
| 3241 'src/nonsfi/loader/build.scons', | 3242 'src/nonsfi/loader/build.scons', |
| 3242 'src/shared/gio/nacl.scons', | 3243 'src/shared/gio/nacl.scons', |
| 3243 'src/shared/imc/nacl.scons', | 3244 'src/shared/imc/nacl.scons', |
| 3244 'src/shared/ldr/nacl.scons', | 3245 'src/shared/ldr/nacl.scons', |
| 3245 'src/shared/platform/nacl.scons', | 3246 'src/shared/platform/nacl.scons', |
| 3246 'src/shared/srpc/nacl.scons', | 3247 'src/shared/srpc/nacl.scons', |
| 3247 'src/trusted/service_runtime/nacl.scons', | 3248 'src/trusted/service_runtime/nacl.scons', |
| 3248 'src/trusted/validator/nacl.scons', | 3249 'src/trusted/validator/nacl.scons', |
| (...skipping 748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3997 nacl_env.ValidateSdk() | 3998 nacl_env.ValidateSdk() |
| 3998 | 3999 |
| 3999 if BROKEN_TEST_COUNT > 0: | 4000 if BROKEN_TEST_COUNT > 0: |
| 4000 msg = "There are %d broken tests." % BROKEN_TEST_COUNT | 4001 msg = "There are %d broken tests." % BROKEN_TEST_COUNT |
| 4001 if GetOption('brief_comstr'): | 4002 if GetOption('brief_comstr'): |
| 4002 msg += " Add --verbose to the command line for more information." | 4003 msg += " Add --verbose to the command line for more information." |
| 4003 print msg | 4004 print msg |
| 4004 | 4005 |
| 4005 # separate warnings from actual build output | 4006 # separate warnings from actual build output |
| 4006 Banner('B U I L D - O U T P U T:') | 4007 Banner('B U I L D - O U T P U T:') |
| OLD | NEW |