From 38743dd7743e39caaba47cf10a0e078172ed5fcd Mon Sep 17 00:00:00 2001 From: Ryan Macnak Date: Tue, 10 Mar 2026 12:36:30 -0700 Subject: [PATCH] [vm] Remove unused dependency on ICU i18n. TEST=ci Change-Id: I6a09ef8af516495d479b5969aa89c9b2ceb9dc6f Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/486824 Reviewed-by: Alexander Aprelev Commit-Queue: Ryan Macnak --- runtime/bin/BUILD.gn | 1 - runtime/vm/BUILD.gn | 6 +----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/runtime/bin/BUILD.gn b/runtime/bin/BUILD.gn index c73d77d95b1..a1a7bda2884 100644 --- a/runtime/bin/BUILD.gn +++ b/runtime/bin/BUILD.gn @@ -886,7 +886,6 @@ template("dart_executable") { ":crashpad", ":icudtl_cc", "//third_party/boringssl", - "//third_party/icu:icui18n", "//third_party/icu:icuuc", "//third_party/zlib", ] diff --git a/runtime/vm/BUILD.gn b/runtime/vm/BUILD.gn index dc4f61add3a..4b1753239f3 100644 --- a/runtime/vm/BUILD.gn +++ b/runtime/vm/BUILD.gn @@ -73,10 +73,7 @@ library_for_all_configs("libdart_vm") { target_type = "source_set" extra_product_deps = [] extra_nonproduct_deps = [] - extra_deps = [ - "//third_party/icu:icui18n", - "//third_party/icu:icuuc", - ] + extra_deps = [ "//third_party/icu:icuuc" ] if (dart_support_perfetto) { extra_deps += [ "//third_party/perfetto:libprotozero" ] } @@ -273,7 +270,6 @@ executable("gen_regexp_special_case") { ] deps = [ "../platform:libdart_platform_jit", - "//third_party/icu:icui18n", "//third_party/icu:icuuc", ] sources = [ "regexp/gen_regexp_special_case.cc" ]