Chromium Code Reviews| Index: tests/bundle_size/nacl.scons |
| =================================================================== |
| --- tests/bundle_size/nacl.scons (revision 5756) |
| +++ tests/bundle_size/nacl.scons (working copy) |
| @@ -5,10 +5,8 @@ |
| Import('env') |
| -env.ComponentProgram('bundle_size.nexe', |
| - 'bundle_size.c', |
| - EXTRA_LIBS=['pthread']) |
| -node = env.CommandSelLdrTestNacl( |
| - 'bundle_size.out', |
| - command=[env.File('bundle_size.nexe')]) |
| +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 "
|
| + 'bundle_size.c', |
| + EXTRA_LIBS=['pthread']) |
| +node = env.CommandSelLdrTestNacl('bundle_size.out', nexe) |
| env.AddNodeToTestSuite(node, ['small_tests'], 'run_bundle_size') |