Chromium Code Reviews| Index: pkg/polymer/lib/src/build/runner.dart |
| diff --git a/pkg/polymer/lib/src/build/runner.dart b/pkg/polymer/lib/src/build/runner.dart |
| index c7658deb8ae20ba20fa6a2232092cec9842fa8e2..d9d528049b86f5e156987caa01b0eb40f1b9fed7 100644 |
| --- a/pkg/polymer/lib/src/build/runner.dart |
| +++ b/pkg/polymer/lib/src/build/runner.dart |
| @@ -104,12 +104,11 @@ Map<String, String> _readPackageDirsFromPub(String currentPackage) { |
| // TODO(sigmund): consider computing this list by recursively parsing |
| // pubspec.yaml files in the `Options.packageDirs`. |
| final Set<String> _polymerPackageDependencies = [ |
| - 'analyzer', 'args', 'barback', 'browser', 'csslib', |
| - 'custom_element', 'fancy_syntax', 'html5lib', 'html_import', 'js', |
| - 'logging', 'meta', 'mutation_observer', 'observe', 'path' |
| - 'polymer_expressions', 'serialization', 'shadow_dom', 'source_maps', |
| - 'stack_trace', 'template_binding', 'unittest', 'unmodifiable_collection', |
| - 'yaml'].toSet(); |
| + 'analyzer', 'args', 'barback', 'browser', 'custom_element', 'fancy_syntax', |
|
Jennifer Messerly
2013/11/07 04:11:54
remove fancy_syntax too?
|
| + 'html5lib', 'html_import', 'js', 'logging', 'meta', 'mutation_observer', |
|
Jennifer Messerly
2013/11/07 04:11:54
and meta
|
| + 'observe', 'path', 'polymer_expressions', 'serialization', 'shadow_dom', |
| + 'source_maps', 'stack_trace', 'template_binding', 'unittest', |
| + 'unmodifiable_collection', 'yaml'].toSet(); |
| /** Return the relative path of each file under [subDir] in [package]. */ |
| Iterable<String> _listPackageDir(String package, String subDir, |