b5eb9af663
Also fix --check-clean. `ninja target -t commands` reports the commands for the default target, fix to use `ninja -t commands target` instead. Change-Id: Ice179290e75b083a96abadb7540ca960eafcc982 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/510440 Reviewed-by: Alexander Aprelev <aam@google.com> Commit-Queue: Ryan Macnak <rmacnak@google.com>
26 lines
873 B
Plaintext
26 lines
873 B
Plaintext
# Copyright (c) 2024, 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("../aot_snapshot.gni")
|
|
|
|
_dart_root = get_path_info("../..", "abspath")
|
|
|
|
group("dynamic_module_runner") {
|
|
public_deps = [ ":dynamic_module_runner_snapshot" ]
|
|
}
|
|
|
|
aot_snapshot("dynamic_module_runner_snapshot") {
|
|
main_dart = "../../pkg/dynamic_modules/bin/dynamic_module_runner.dart"
|
|
name = "dynamic_module_runner"
|
|
gen_kernel_args =
|
|
[ "--dynamic-interface=" + rebase_path(
|
|
"$_dart_root/utils/dynamic_module_runner/dynamic_interface.yaml",
|
|
root_build_dir) ]
|
|
}
|
|
|
|
aot_snapshot("dynamic_modules_test_suite_snapshot") {
|
|
main_dart = "../../pkg/dynamic_modules/test/runner/main.dart"
|
|
name = "dynamic_modules_test_suite"
|
|
}
|