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

Side by Side Diff: tests/bundle_size/nacl.scons

Issue 7242011: Get rid of assumptions about ".nexe" extension. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 9 years, 6 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
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # Copyright 2009 The Native Client Authors. All rights reserved. 2 # Copyright 2009 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can 3 # Use of this source code is governed by a BSD-style license that can
4 # be found in the LICENSE file. 4 # be found in the LICENSE file.
5 5
6 Import('env') 6 Import('env')
7 7
8 env.ComponentProgram('bundle_size.nexe', 8 nexe = env.ComponentProgram('bundle_size',
Nick Bray 2011/06/23 18:32:24 Is this nexe? Or prog? Or something else? Pick
pdox 2011/06/23 20:42:58 Nick, I left existing code alone, so if there's "
9 'bundle_size.c', 9 'bundle_size.c',
10 EXTRA_LIBS=['pthread']) 10 EXTRA_LIBS=['pthread'])
11 node = env.CommandSelLdrTestNacl( 11 node = env.CommandSelLdrTestNacl('bundle_size.out', nexe)
12 'bundle_size.out',
13 command=[env.File('bundle_size.nexe')])
14 env.AddNodeToTestSuite(node, ['small_tests'], 'run_bundle_size') 12 env.AddNodeToTestSuite(node, ['small_tests'], 'run_bundle_size')
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698