019e16a7ad
Looks like I forgot to do this on my last cl. TBR=jmesserly@google.com Committed: https://github.com/dart-lang/sdk/commit/0c8704e1c78326d9b16da4266873216f3df608cc Review-Url: https://codereview.chromium.org/2709613003 .
21 lines
723 B
Plaintext
21 lines
723 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("dartdevc") {
|
|
main_dart = "../../pkg/dev_compiler/bin/dartdevc.dart"
|
|
training_args = [
|
|
"--dart-sdk",
|
|
rebase_path("../../sdk"),
|
|
"--dart-sdk-summary",
|
|
rebase_path("../../pkg/dev_compiler/lib/sdk/ddc_sdk.sum"),
|
|
"--help",
|
|
]
|
|
inputs = exec_script("../../tools/list_dart_files.py",
|
|
[ "absolute",
|
|
rebase_path("../../pkg/dev_compiler/bin") ],
|
|
"list lines")
|
|
}
|