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

Unified Diff: pkg/polymer/lib/src/build/common.dart

Issue 723393003: update to polymer js 0.5.1 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: little bit of cleanup 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 side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698