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" ]