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

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: final tweaks Created 6 years 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..d1b9aa0edc53c612805790db1988635ada8c3aa5 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 the polyfills from the `web_components`
/// 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