From 3133e1fbca4dc4f6d19a36f2ce68b2b2d19b441d Mon Sep 17 00:00:00 2001 From: Jackson Gardner Date: Fri, 8 Dec 2023 07:28:12 -0800 Subject: [PATCH] Add the `flutter_js` target as a dep to `web_sdk`. (flutter/engine#48814) Currently, the `flutter_js` target is built as part of the flutter_web_sdk_archive target. However, it should also be built when doing the normal web_sdk, as that is what the monorepo builds (and does its own archiving). --- engine/src/flutter/web_sdk/BUILD.gn | 1 + 1 file changed, 1 insertion(+) diff --git a/engine/src/flutter/web_sdk/BUILD.gn b/engine/src/flutter/web_sdk/BUILD.gn index 3c3e9e64e69..f58a81d859e 100644 --- a/engine/src/flutter/web_sdk/BUILD.gn +++ b/engine/src/flutter/web_sdk/BUILD.gn @@ -31,6 +31,7 @@ group("web_sdk") { deps = [ ":flutter_ddc_modules", ":flutter_platform_dills", + "//flutter/lib/web_ui/flutter_js", ] }