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

Unified Diff: utils/dartanalyzer/BUILD.gn

Issue 2392253002: Use list_dart_files.py instead of list_files.py in GN build. (Closed)
Patch Set: Created 4 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 | « utils/create_timestamp.gni ('k') | utils/dartdevc/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/dartanalyzer/BUILD.gn
diff --git a/utils/dartanalyzer/BUILD.gn b/utils/dartanalyzer/BUILD.gn
index e9d88a62fe81b070fba71b1bdab52fd29e09abc2..8f19b1ac575a1b5eab5b5b66f0aeff6c893d488d 100644
--- a/utils/dartanalyzer/BUILD.gn
+++ b/utils/dartanalyzer/BUILD.gn
@@ -12,24 +12,21 @@ group("dartanalyzer") {
]
}
-analyzer_files = exec_script("../../tools/list_files.py",
- ["\\.dart\$",
- rebase_path("../../pkg/analyzer")],
+analyzer_files = exec_script("../../tools/list_dart_files.py",
+ [rebase_path("../../pkg/analyzer")],
"list lines")
application_snapshot("generate_dartanalyzer_snapshot") {
main_dart = "../../pkg/analyzer_cli/bin/analyzer.dart"
name = "dartanalyzer"
- cli_files = exec_script("../../tools/list_files.py",
- ["\\.dart\$",
- rebase_path("../../pkg/analyzer_cli")],
+ cli_files = exec_script("../../tools/list_dart_files.py",
+ [rebase_path("../../pkg/analyzer_cli")],
"list lines")
inputs = cli_files + analyzer_files
}
-sdk_lib_files = exec_script("../../tools/list_files.py",
- ["\\.dart\$",
- rebase_path("../../sdk/lib")],
+sdk_lib_files = exec_script("../../tools/list_dart_files.py",
+ [rebase_path("../../sdk/lib")],
"list lines")
template("generate_summary") {
« no previous file with comments | « utils/create_timestamp.gni ('k') | utils/dartdevc/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698