4a51268890
Disable broken analyzer training runs. Bug: https://github.com/dart-lang/sdk/issues/34616 Change-Id: Ib2bb022f5b095bcd29451741aa4ed557d2f78c17 Reviewed-on: https://dart-review.googlesource.com/77228 Reviewed-by: Zach Anderson <zra@google.com> Commit-Queue: Ryan Macnak <rmacnak@google.com>
16 lines
545 B
Plaintext
16 lines
545 B
Plaintext
# Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
|
|
# for details. All rights reserved. Use of this source code is governed by a
|
|
# BSD-style license that can be found in the LICENSE file.
|
|
|
|
import("../application_snapshot.gni")
|
|
|
|
application_snapshot("analysis_server") {
|
|
main_dart = "../../pkg/analysis_server/bin/server.dart"
|
|
training_args = [
|
|
"--help"
|
|
# TODO(34616): This is broken on Fuchsia.
|
|
# "--sdk=" + rebase_path("../../sdk/"),
|
|
# "--train-using=" + rebase_path("../../pkg/analyzer_cli")
|
|
]
|
|
}
|