[Impeller] Build standalone library on Android. (flutter/engine#55566)

Fixes https://github.com/flutter/flutter/issues/156012
This commit is contained in:
Chinmay Garde 2024-10-01 13:10:04 -07:00 committed by GitHub
parent 166590d6c2
commit 1b5af4fd8f

View File

@ -153,6 +153,11 @@ group("flutter") {
]
}
# Build the standalone Impeller library.
if (is_mac || is_linux || is_win || is_android) {
public_deps += [ "//flutter/impeller/toolkit/interop:library" ]
}
if ((flutter_runtime_mode == "debug" || flutter_runtime_mode == "profile") &&
(is_ios || is_android)) {
public_deps += [ "//flutter/testing/scenario_app" ]
@ -213,7 +218,6 @@ group("unittests") {
"//flutter/impeller:impeller_dart_unittests",
"//flutter/impeller:impeller_unittests",
"//flutter/impeller/toolkit/interop:example",
"//flutter/impeller/toolkit/interop:library",
]
}