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

Side by Side Diff: SConstruct

Issue 12316093: Serialization library. Useful for sending more complex data in RPCs. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: added missing NACL_WUR and CHECKs detected by clang Created 7 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | build/all.gyp » ('j') | no next file with comments »
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 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
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
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:')
OLDNEW
« no previous file with comments | « no previous file | build/all.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698