Files
sdk/utils/dynamic_module_runner/BUILD.gn
T
Alexander Markov 3d8829fad2 Add dart2bytecode snapshot and VM/AOT dynamic modules test configurations
Change-Id: I84f8dbc174dbac5a11ca84e248c7aecb3759aaad
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/380283
Reviewed-by: Slava Egorov <vegorov@google.com>
Reviewed-by: Sigmund Cherem <sigmund@google.com>
Commit-Queue: Alexander Markov <alexmarkov@google.com>
2024-08-15 15:28:25 +00:00

20 lines
686 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") ]
}