[analyzer] add more inputs to the analysis server GN build

Change-Id: I421941e5051f968763c94faeedb4acf149c2afce
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/121883
Reviewed-by: Keerti Parthasarathy <keertip@google.com>
Commit-Queue: Devon Carew <devoncarew@google.com>
This commit is contained in:
Devon Carew 2019-10-16 22:43:59 +00:00 committed by commit-bot@chromium.org
parent dfa50ae87b
commit c6c79e529e

View file

@ -4,12 +4,20 @@
import("../application_snapshot.gni")
analysis_server_files = exec_script("../../tools/list_dart_files.py",
[
"absolute",
rebase_path("../../pkg/analysis_server"),
],
"list lines")
application_snapshot("analysis_server") {
main_dart = "../../pkg/analysis_server/bin/server.dart"
training_args = [
"--help"
"--help",
# TODO(34616): This is broken on Fuchsia.
# "--sdk=" + rebase_path("../../sdk/"),
# "--train-using=" + rebase_path("../../pkg/analyzer_cli")
]
inputs = analysis_server_files
}