Chromium Code Reviews| Index: tests/browser_startup_time/nacl.scons |
| =================================================================== |
| --- tests/browser_startup_time/nacl.scons (revision 5756) |
| +++ tests/browser_startup_time/nacl.scons (working copy) |
| @@ -11,7 +11,7 @@ |
| # Hope it does not change to do more than just the barebones. |
| # We must make a separate build though, to get a different nexe "key" |
| # for the env.Publish() / env.ExtractPublishedFiles() magic. |
| -nexe = 'browser_startup_time_%s.nexe' % env.get('TARGET_FULLARCH') |
| +nexe = 'browser_startup_time_%s' % env.get('TARGET_FULLARCH') |
|
Nick Bray
2011/06/23 18:32:24
Why leave this named nexe?
pdox
2011/06/23 20:42:58
Done.
|
| # Build object file separately to prevent crud left in the source directory. |
| browser_startup_obj = env.ComponentObject( |
| @@ -67,7 +67,7 @@ |
| # Also check the size of this nexe. |
| node = env.FileSizeTest('browser_startup_size.out', |
| - nexe) |
| + browser_startup_nexe) |
| env.AddNodeToTestSuite(node, |
| test_suites, |
| 'run_browser_startup_size_test') |