Chromium Code Reviews| Index: pkg/polymer/lib/src/build/common.dart |
| diff --git a/pkg/polymer/lib/src/build/common.dart b/pkg/polymer/lib/src/build/common.dart |
| index acdd89be6a43c56b54f735e618b9b2f83768c4cd..f0b2409382091c4ba44c6f1e3a55c1774eeee311 100644 |
| --- a/pkg/polymer/lib/src/build/common.dart |
| +++ b/pkg/polymer/lib/src/build/common.dart |
| @@ -88,14 +88,14 @@ class TransformOptions { |
| // reachable (entry point+imported) html if deploying. See dartbug.com/17199. |
| final LintOptions lint; |
| - /// This will automatically inject `platform.js` from the `web_components` |
| + /// This will automatically inject `webcomponents.js` from the `web_components` |
|
Siggi Cherem (dart-lang)
2014/11/25 17:53:42
long line, idea, say 'inject the polyfills' instea
jakemac
2014/12/01 18:42:51
Done.
|
| /// package in all entry points, if it is not already included. |
| - final bool injectPlatformJs; |
| + final bool injectWebComponentsJs; |
| TransformOptions({entryPoints, this.inlineStylesheets, |
| this.contentSecurityPolicy: false, this.directlyIncludeJS: true, |
| this.releaseMode: true, this.lint: const LintOptions(), |
| - this.injectBuildLogsInOutput: false, this.injectPlatformJs: true}) |
| + this.injectBuildLogsInOutput: false, this.injectWebComponentsJs: true}) |
| : entryPoints = entryPoints == null ? null |
| : entryPoints.map(systemToAssetPath).toList(); |