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

Side by Side Diff: SConstruct

Issue 6899031: Remove the obsolete prebuilt infrastructure files and disable multiarch. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 9 years, 8 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 | tests/prebuilt/arm/gold-barebones_hello_world.nexe » ('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) 2011 The Native Client Authors. All rights reserved. 2 # Copyright (c) 2011 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 glob 7 import glob
8 import os 8 import os
9 import platform 9 import platform
10 import stat 10 import stat
(...skipping 2268 matching lines...) Expand 10 before | Expand all | Expand 10 after
2279 'tests/imc_sockets/nacl.scons', 2279 'tests/imc_sockets/nacl.scons',
2280 'tests/inbrowser_test_runner/nacl.scons', 2280 'tests/inbrowser_test_runner/nacl.scons',
2281 'tests/irt_hw/nacl.scons', 2281 'tests/irt_hw/nacl.scons',
2282 'tests/libc_free_hello_world/nacl.scons', 2282 'tests/libc_free_hello_world/nacl.scons',
2283 'tests/longjmp/nacl.scons', 2283 'tests/longjmp/nacl.scons',
2284 'tests/loop/nacl.scons', 2284 'tests/loop/nacl.scons',
2285 'tests/mandel/nacl.scons', 2285 'tests/mandel/nacl.scons',
2286 'tests/math/nacl.scons', 2286 'tests/math/nacl.scons',
2287 'tests/memcheck_test/nacl.scons', 2287 'tests/memcheck_test/nacl.scons',
2288 'tests/mmap/nacl.scons', 2288 'tests/mmap/nacl.scons',
2289 'tests/multiarch/nacl.scons', 2289 # multiarch is disabled for now, as it doesn't test what it purports to.
2290 # It was already disabled on Windows, irt, and ARM, and referred to the
2291 # now obsolete prebuilt infrastructure.
2292 # TODO(sehr): reenable multiarch or move to something similar.
2293 #'tests/multiarch/nacl.scons',
2290 'tests/multiple_sandboxes/nacl.scons', 2294 'tests/multiple_sandboxes/nacl.scons',
2291 'tests/nacl.scons', 2295 'tests/nacl.scons',
2292 'tests/nacl_log/nacl.scons', 2296 'tests/nacl_log/nacl.scons',
2293 'tests/nameservice/nacl.scons', 2297 'tests/nameservice/nacl.scons',
2294 'tests/nanosleep/nacl.scons', 2298 'tests/nanosleep/nacl.scons',
2295 'tests/native_worker/nacl.scons', 2299 'tests/native_worker/nacl.scons',
2296 'tests/noop/nacl.scons', 2300 'tests/noop/nacl.scons',
2297 'tests/nrd_xfer/nacl.scons', 2301 'tests/nrd_xfer/nacl.scons',
2298 'tests/nthread_nice/nacl.scons', 2302 'tests/nthread_nice/nacl.scons',
2299 'tests/null/nacl.scons', 2303 'tests/null/nacl.scons',
(...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after
2827 Default(['all_programs', 'all_bundles', 'all_test_programs', 'all_libraries']) 2831 Default(['all_programs', 'all_bundles', 'all_test_programs', 'all_libraries'])
2828 2832
2829 if BROKEN_TEST_COUNT > 0: 2833 if BROKEN_TEST_COUNT > 0:
2830 msg = "There are %d broken tests." % BROKEN_TEST_COUNT 2834 msg = "There are %d broken tests." % BROKEN_TEST_COUNT
2831 if GetOption('brief_comstr'): 2835 if GetOption('brief_comstr'):
2832 msg += " Add --verbose to the command line for more information." 2836 msg += " Add --verbose to the command line for more information."
2833 print msg 2837 print msg
2834 2838
2835 # separate warnings from actual build output 2839 # separate warnings from actual build output
2836 Banner('B U I L D - O U T P U T:') 2840 Banner('B U I L D - O U T P U T:')
OLDNEW
« no previous file with comments | « no previous file | tests/prebuilt/arm/gold-barebones_hello_world.nexe » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698