| Index: utils/dartanalyzer/BUILD.gn
|
| diff --git a/utils/dartanalyzer/BUILD.gn b/utils/dartanalyzer/BUILD.gn
|
| index dbefeecc3423e5c8e1e6cf804d39906f164a65c6..7ea889e05c3c43b0a8c9d667470735ceccb1eff3 100644
|
| --- a/utils/dartanalyzer/BUILD.gn
|
| +++ b/utils/dartanalyzer/BUILD.gn
|
| @@ -14,7 +14,7 @@ group("dartanalyzer") {
|
| }
|
|
|
| analyzer_files = exec_script("../../tools/list_dart_files.py",
|
| - [ rebase_path("../../pkg/analyzer") ],
|
| + [ "absolute", rebase_path("../../pkg/analyzer") ],
|
| "list lines")
|
|
|
| application_snapshot("generate_dartanalyzer_snapshot") {
|
| @@ -25,13 +25,13 @@ application_snapshot("generate_dartanalyzer_snapshot") {
|
| ]
|
| name = "dartanalyzer"
|
| cli_files = exec_script("../../tools/list_dart_files.py",
|
| - [ rebase_path("../../pkg/analyzer_cli") ],
|
| + [ "absolute", rebase_path("../../pkg/analyzer_cli") ],
|
| "list lines")
|
| inputs = cli_files + analyzer_files
|
| }
|
|
|
| sdk_lib_files = exec_script("../../tools/list_dart_files.py",
|
| - [ rebase_path("../../sdk/lib") ],
|
| + [ "absolute", rebase_path("../../sdk/lib") ],
|
| "list lines")
|
|
|
| template("generate_summary") {
|
|
|