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

Side by Side Diff: packages/polymer/lib/src/build/polyfill_injector.dart

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years, 2 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
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 /// Includes any additional polyfills that may needed by the deployed app. 5 /// Includes any additional polyfills that may needed by the deployed app.
6 library polymer.src.build.polyfill_injector; 6 library polymer.src.build.polyfill_injector;
7 7
8 import 'dart:async'; 8 import 'dart:async';
9 9
10 import 'package:barback/barback.dart'; 10 import 'package:barback/barback.dart';
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 }); 137 });
138 } 138 }
139 } 139 }
140 140
141 final _platformJS = new RegExp(r'platform.*\.js', caseSensitive: false); 141 final _platformJS = new RegExp(r'platform.*\.js', caseSensitive: false);
142 final _webComponentsJS = 142 final _webComponentsJS =
143 new RegExp(r'webcomponents.*\.js', caseSensitive: false); 143 new RegExp(r'webcomponents.*\.js', caseSensitive: false);
144 final _dartSupportJS = new RegExp(r'dart_support.js', caseSensitive: false); 144 final _dartSupportJS = new RegExp(r'dart_support.js', caseSensitive: false);
145 final _browserDartJS = 145 final _browserDartJS =
146 new RegExp(r'packages/browser/dart.js', caseSensitive: false); 146 new RegExp(r'packages/browser/dart.js', caseSensitive: false);
OLDNEW
« no previous file with comments | « packages/polymer/lib/src/build/messages.dart ('k') | packages/polymer/lib/src/build/polymer_bootstrap.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698