c2fc5f9756
Bug: https://github.com/dart-lang/sdk/issues/40881 Change-Id: Ie5b63410a926462352858f8d4341e79a8c332be5 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/138480 Reviewed-by: Mike Fairhurst <mfairhurst@google.com> Reviewed-by: Janice Collins <jcollins@google.com> Commit-Queue: Devon Carew <devoncarew@google.com>
26 lines
956 B
Plaintext
26 lines
956 B
Plaintext
# Copyright (c) 2020, 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")
|
|
|
|
dartdev_files = exec_script("../../tools/list_dart_files.py",
|
|
[
|
|
"absolute",
|
|
rebase_path("../../pkg/dartdev"),
|
|
],
|
|
"list lines")
|
|
|
|
dartfix_files = exec_script("../../tools/list_dart_files.py",
|
|
[
|
|
"absolute",
|
|
rebase_path("../../pkg/dartfix"),
|
|
],
|
|
"list lines")
|
|
|
|
application_snapshot("dartdev") {
|
|
main_dart = "../../pkg/dartdev/bin/dartdev.dart"
|
|
training_args = [ "--help" ]
|
|
inputs = dartdev_files + dartfix_files
|
|
}
|