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

Side by Side Diff: chrome/browser/ui/webui/javascript2webui.js

Issue 8440060: Revert 108391 - Broke 'compile' on Mac clobber builder (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 1 month 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 | chrome/chrome_tests.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 if (arguments.length < 3) { 4 if (arguments.length < 3) {
5 print('usage: ' + 5 print('usage: ' +
6 arguments[0] + ' path-to-testfile.js testfile.js [output.cc]'); 6 arguments[0] + ' path-to-testfile.js testfile.js [output.cc]');
7 quit(-1); 7 quit(-1);
8 } 8 }
9 var jsFile = arguments[1]; 9 var jsFile = arguments[1];
10 var jsFileBase = arguments[2]; 10 var jsFileBase = arguments[2];
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 '"' + testFixture + '", ' + 59 '"' + testFixture + '", ' +
60 '"' + testFunction + '"));'); 60 '"' + testFunction + '"));');
61 if (testGenPostamble) 61 if (testGenPostamble)
62 testGenPostamble(testFixture, testFunction); 62 testGenPostamble(testFixture, testFunction);
63 print('}'); 63 print('}');
64 print(); 64 print();
65 } 65 }
66 66
67 var js = read(jsFile); 67 var js = read(jsFile);
68 eval(js); 68 eval(js);
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698