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

Unified Diff: samples/third_party/todomvc/build.dart

Issue 23224003: move polymer.dart into dart svn (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: add --deploy to todomvc sample Created 7 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/polymer/test/utils_test.dart ('k') | samples/third_party/todomvc/pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/third_party/todomvc/build.dart
diff --git a/samples/third_party/todomvc/build.dart b/samples/third_party/todomvc/build.dart
index 39dbb1e238cd7a880aa551466027035f8d672414..598462e21e24522ac5652d9d1a456231c0e3446a 100755
--- a/samples/third_party/todomvc/build.dart
+++ b/samples/third_party/todomvc/build.dart
@@ -4,8 +4,9 @@
// BSD-style license that can be found in the LICENSE file.
import 'dart:io';
-import 'package:web_ui/component_build.dart';
+import 'package:polymer/component_build.dart';
void main() {
- build(new Options().arguments, ['web/index.html']);
+ var args = new Options().arguments.toList()..addAll(['--', '--deploy']);
+ build(args, ['web/index.html']);
}
« no previous file with comments | « pkg/polymer/test/utils_test.dart ('k') | samples/third_party/todomvc/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698