Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(412)

Side by Side Diff: SConstruct

Issue 546883003: MinSFI: Passing arguments to the entry function (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | site_scons/site_tools/naclsdk.py » ('j') | src/include/minsfi_priv.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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:')
OLDNEW
« no previous file with comments | « no previous file | site_scons/site_tools/naclsdk.py » ('j') | src/include/minsfi_priv.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698