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

Side by Side Diff: sdk/lib/_internal/pub/test/dart2js/outputs_deferred_libraries_test.dart

Issue 701283002: Stop emitting dart2js's .precompiled.js file. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 import 'package:scheduled_test/scheduled_test.dart'; 5 import 'package:scheduled_test/scheduled_test.dart';
6 6
7 import '../descriptor.dart' as d; 7 import '../descriptor.dart' as d;
8 import '../test_pub.dart'; 8 import '../test_pub.dart';
9 9
10 const MAIN = """ 10 const MAIN = """
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 ]) 49 ])
50 ]).create(); 50 ]).create();
51 51
52 schedulePub(args: ["build"], 52 schedulePub(args: ["build"],
53 output: new RegExp(r'Built 4 files to "build".')); 53 output: new RegExp(r'Built 4 files to "build".'));
54 54
55 d.dir(appPath, [ 55 d.dir(appPath, [
56 d.dir('build', [ 56 d.dir('build', [
57 d.dir('web', [ 57 d.dir('web', [
58 d.matcherFile('main.dart.js', isNot(isEmpty)), 58 d.matcherFile('main.dart.js', isNot(isEmpty)),
59 d.matcherFile('main.dart.precompiled.js', isNot(isEmpty)),
60 d.matcherFile('main.dart.js_1.part.js', isNot(isEmpty)), 59 d.matcherFile('main.dart.js_1.part.js', isNot(isEmpty)),
61 d.matcherFile('main.dart.js_2.part.js', isNot(isEmpty)), 60 d.matcherFile('main.dart.js_2.part.js', isNot(isEmpty)),
62 ]) 61 ])
63 ]) 62 ])
64 ]).validate(); 63 ]).validate();
65 }); 64 });
66 } 65 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698