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

Unified Diff: sdk/lib/_internal/pub/lib/src/barback/dart2js_transformer.dart

Issue 26933003: Make pub build use barback. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reword doc comment. Created 7 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 side-by-side diff with in-line comments
Download patch
Index: sdk/lib/_internal/pub/lib/src/barback/dart2js_transformer.dart
diff --git a/sdk/lib/_internal/pub/lib/src/barback/dart2js_transformer.dart b/sdk/lib/_internal/pub/lib/src/barback/dart2js_transformer.dart
index ef5185ed6e78f93998f4d81a0ffdd3277723ff28..97d878a40b70f7c2a4d911a31a1e4e1f7f8606c9 100644
--- a/sdk/lib/_internal/pub/lib/src/barback/dart2js_transformer.dart
+++ b/sdk/lib/_internal/pub/lib/src/barback/dart2js_transformer.dart
@@ -26,6 +26,11 @@ import '../package_graph.dart';
class Dart2JSTransformer extends Transformer {
final PackageGraph _graph;
+ /// The [AssetId]s the transformer has discovered so far. Used by pub build
+ /// to determine where to copy the JS bootstrap files.
+ // TODO(rnystrom): Do something cleaner for this, or eliminate those files.
nweiz 2013/10/16 21:40:22 A low-hanging way to do this would be to just put
Bob Nystrom 2013/10/29 00:03:30 Yeah, I talked to Vijay about this a bit while you
+ final entrypoints = new Set<AssetId>();
+
Dart2JSTransformer(this._graph);
/// Only ".dart" files within "web/" are processed.
@@ -60,6 +65,9 @@ class Dart2JSTransformer extends Transformer {
// actually be on disk, but this gives dart2js a root to resolve
// relative paths against.
var id = transform.primaryInput.id;
+
+ entrypoints.add(id);
+
var entrypoint = path.join(_graph.packages[id.package].dir, id.path);
var packageRoot = path.join(_graph.entrypoint.root.dir, "packages");

Powered by Google App Engine
This is Rietveld 408576698