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

Unified Diff: lib/component_build.dart

Issue 55143003: webui fixes for 0.8.9 (Closed) Base URL: git@github.com:dart-lang/web-ui.git@master
Patch Set: 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
« no previous file with comments | « example/wiki_css/build.dart ('k') | lib/dwc.dart » ('j') | pubspec.yaml » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/component_build.dart
diff --git a/lib/component_build.dart b/lib/component_build.dart
index b975328dca5934342c941e52f52f64f1901ee207..637e2ebef7d74620d9d55bea42eb330bfa1eeb5a 100644
--- a/lib/component_build.dart
+++ b/lib/component_build.dart
@@ -111,7 +111,7 @@ Future<List<dwc.CompilerResult>> build(List<String> arguments,
String _outDir(String file) => path.join(path.dirname(file), 'out');
/** Tell whether [filePath] is a generated file. */
-bool _isGeneratedFile(String filePath, List<Directory> outputOnlyDirs) {
+bool _isGeneratedFile(String filePath, List<String> outputOnlyDirs) {
var dirPrefix = path.dirname(filePath);
for (var outDir in outputOnlyDirs) {
if (dirPrefix.startsWith(outDir)) return true;
« no previous file with comments | « example/wiki_css/build.dart ('k') | lib/dwc.dart » ('j') | pubspec.yaml » ('J')

Powered by Google App Engine
This is Rietveld 408576698