From 27c2cfb3f7a4c7e548b10aa338cc2b38bccbad36 Mon Sep 17 00:00:00 2001 From: Ivan Inozemtsev Date: Tue, 15 Jul 2025 07:50:01 -0700 Subject: [PATCH] Add pubspec.yaml to runtime/tools Otherwise Dart scripts there inherit the version from the root pubspec, which can be ahead of prebuilt SDK. Change-Id: I07b6672f72c08d73661fda4e333cbc2be767db52 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/440480 Reviewed-by: Alexander Thomas Auto-Submit: Ivan Inozemtsev Reviewed-by: Alexander Markov Commit-Queue: Ivan Inozemtsev Commit-Queue: Alexander Thomas --- pubspec.yaml | 1 + runtime/tools/pubspec.yaml | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 runtime/tools/pubspec.yaml diff --git a/pubspec.yaml b/pubspec.yaml index 193b9c1ec01..f7cddc583fd 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -77,6 +77,7 @@ workspace: - pkg/vm_snapshot_analysis - pkg/wasm_builder - runtime/tests/vm/dart + - runtime/tools - runtime/tools/profiling - samples/ffi/http - samples/ffi/httpIG diff --git a/runtime/tools/pubspec.yaml b/runtime/tools/pubspec.yaml new file mode 100644 index 00000000000..a6b4b06dcb9 --- /dev/null +++ b/runtime/tools/pubspec.yaml @@ -0,0 +1,8 @@ +name: runtime_tools +description: Internal runtime tools. + +environment: + sdk: ^3.9.0 + +resolution: workspace +publish_to: none