a9ab8f4e7d
For Dart 2 snapshots, application_snapshots() hardcodes a deps on //utils/kernel-service:copy_kernel_service_snapshot related #33167 Change-Id: I9a598e83a3e8ebb9a27bfe83132f3a957f2fea0e Reviewed-on: https://dart-review.googlesource.com/56161 Reviewed-by: Nate Bosch <nbosch@google.com> Commit-Queue: Zach Anderson <zra@google.com>
17 lines
510 B
Plaintext
17 lines
510 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("pub") {
|
|
main_dart = "../../third_party/pkg/pub/bin/pub.dart"
|
|
training_args = [ "--help" ]
|
|
}
|
|
|
|
application_snapshot("pub2") {
|
|
dart_version = 2
|
|
main_dart = "../../third_party/pkg/pub/bin/pub.dart"
|
|
training_args = [ "--help" ]
|
|
}
|