Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 3548653

Browse files
aamharryterkelsen
authored andcommitted
[fuchsia] Remove hardcoded fuchsia-imported packages 2.12 sdk version (#46629)
Use sdk version from imported package pubspec.yaml instead. This unblocks dart->engine roll that currently is failing https://ci.chromium.org/ui/p/flutter/builders/try/Linux%20Fuchsia/83386/overview.
1 parent 14139de commit 3548653

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed

shell/platform/fuchsia/dart/BUILD.gn

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ dart_library("async_helper") {
6262
package_root = "//third_party/dart/pkg/async_helper"
6363
package_name = "async_helper"
6464

65-
language_version = "2.12"
65+
pubspec = "$package_root/pubspec.yaml"
6666

6767
deps = []
6868

@@ -76,7 +76,7 @@ dart_library("meta") {
7676
package_root = "//third_party/dart/pkg/meta"
7777
package_name = "meta"
7878

79-
language_version = "2.12"
79+
pubspec = "$package_root/pubspec.yaml"
8080

8181
deps = []
8282

@@ -91,7 +91,7 @@ dart_library("expect") {
9191
package_root = "//third_party/dart/pkg/expect"
9292
package_name = "expect"
9393

94-
language_version = "2.12"
94+
pubspec = "$package_root/pubspec.yaml"
9595

9696
deps = [ ":meta" ]
9797

@@ -106,7 +106,7 @@ dart_library("litetest") {
106106
package_root = "//flutter/testing/litetest"
107107
package_name = "litetest"
108108

109-
language_version = "2.12"
109+
pubspec = "$package_root/pubspec.yaml"
110110

111111
source_dir = "lib"
112112

@@ -128,7 +128,7 @@ dart_library("args") {
128128
package_root = "//third_party/dart/third_party/pkg/args"
129129
package_name = "args"
130130

131-
language_version = "2.18"
131+
pubspec = "$package_root/pubspec.yaml"
132132

133133
deps = []
134134

@@ -152,7 +152,7 @@ dart_library("collection") {
152152
package_root = "//third_party/dart/third_party/pkg/collection"
153153
package_name = "collection"
154154

155-
language_version = "2.12"
155+
pubspec = "$package_root/pubspec.yaml"
156156

157157
deps = []
158158

@@ -192,7 +192,7 @@ dart_library("logging") {
192192
package_root = "//third_party/dart/third_party/pkg/logging"
193193
package_name = "logging"
194194

195-
language_version = "2.12"
195+
pubspec = "$package_root/pubspec.yaml"
196196

197197
deps = []
198198

@@ -208,7 +208,7 @@ dart_library("path") {
208208
package_root = "//third_party/dart/third_party/pkg/path"
209209
package_name = "path"
210210

211-
language_version = "2.12"
211+
pubspec = "$package_root/pubspec.yaml"
212212

213213
deps = []
214214

@@ -233,7 +233,7 @@ dart_library("stack_trace") {
233233
package_root = "//third_party/dart/third_party/pkg/stack_trace"
234234
package_name = "stack_trace"
235235

236-
language_version = "2.12"
236+
pubspec = "$package_root/pubspec.yaml"
237237

238238
deps = [ ":path" ]
239239

@@ -255,7 +255,7 @@ dart_library("matcher") {
255255
package_root = "//third_party/dart/third_party/pkg/matcher"
256256
package_name = "matcher"
257257

258-
language_version = "2.12"
258+
pubspec = "$package_root/pubspec.yaml"
259259

260260
deps = [ ":stack_trace" ]
261261

@@ -299,8 +299,7 @@ dart_library("quiver") {
299299
package_root = "//third_party/pkg/quiver"
300300
package_name = "quiver"
301301

302-
# The current version of this library is not null safe
303-
language_version = "2.17"
302+
pubspec = "$package_root/pubspec.yaml"
304303

305304
deps = [
306305
":matcher",
@@ -368,7 +367,7 @@ dart_library("vector_math") {
368367
package_root = "//third_party/pkg/vector_math"
369368
package_name = "vector_math"
370369

371-
language_version = "2.12"
370+
pubspec = "$package_root/pubspec.yaml"
372371

373372
deps = []
374373

0 commit comments

Comments
 (0)