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

Side by Side Diff: SConstruct

Issue 10905317: Generic containers moved into a separate module (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Rebased with master. Created 8 years, 2 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 | site_scons/site_tools/library_deps.py » ('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 1877 matching lines...) Expand 10 before | Expand all | Expand 10 after
1888 'src/shared/imc/build.scons', 1888 'src/shared/imc/build.scons',
1889 'src/shared/ldr/build.scons', 1889 'src/shared/ldr/build.scons',
1890 'src/shared/platform/build.scons', 1890 'src/shared/platform/build.scons',
1891 'src/shared/srpc/build.scons', 1891 'src/shared/srpc/build.scons',
1892 'src/shared/utils/build.scons', 1892 'src/shared/utils/build.scons',
1893 'src/third_party_mod/gtest/build.scons', 1893 'src/third_party_mod/gtest/build.scons',
1894 'src/tools/validator_tools/build.scons', 1894 'src/tools/validator_tools/build.scons',
1895 'src/trusted/debug_stub/build.scons', 1895 'src/trusted/debug_stub/build.scons',
1896 'src/trusted/desc/build.scons', 1896 'src/trusted/desc/build.scons',
1897 'src/trusted/fault_injection/build.scons', 1897 'src/trusted/fault_injection/build.scons',
1898 'src/trusted/generic_container/build.scons',
1898 'src/trusted/gio/build.scons', 1899 'src/trusted/gio/build.scons',
1899 'src/trusted/interval_multiset/build.scons', 1900 'src/trusted/interval_multiset/build.scons',
1900 'src/trusted/manifest_name_service_proxy/build.scons', 1901 'src/trusted/manifest_name_service_proxy/build.scons',
1901 'src/trusted/nacl_base/build.scons', 1902 'src/trusted/nacl_base/build.scons',
1902 'src/trusted/nonnacl_util/build.scons', 1903 'src/trusted/nonnacl_util/build.scons',
1903 'src/trusted/perf_counter/build.scons', 1904 'src/trusted/perf_counter/build.scons',
1904 'src/trusted/platform_qualify/build.scons', 1905 'src/trusted/platform_qualify/build.scons',
1905 'src/trusted/python_bindings/build.scons', 1906 'src/trusted/python_bindings/build.scons',
1906 'src/trusted/reverse_service/build.scons', 1907 'src/trusted/reverse_service/build.scons',
1907 'src/trusted/sel_universal/build.scons', 1908 'src/trusted/sel_universal/build.scons',
(...skipping 1503 matching lines...) Expand 10 before | Expand all | Expand 10 after
3411 nacl_env.ValidateSdk() 3412 nacl_env.ValidateSdk()
3412 3413
3413 if BROKEN_TEST_COUNT > 0: 3414 if BROKEN_TEST_COUNT > 0:
3414 msg = "There are %d broken tests." % BROKEN_TEST_COUNT 3415 msg = "There are %d broken tests." % BROKEN_TEST_COUNT
3415 if GetOption('brief_comstr'): 3416 if GetOption('brief_comstr'):
3416 msg += " Add --verbose to the command line for more information." 3417 msg += " Add --verbose to the command line for more information."
3417 print msg 3418 print msg
3418 3419
3419 # separate warnings from actual build output 3420 # separate warnings from actual build output
3420 Banner('B U I L D - O U T P U T:') 3421 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/library_deps.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698