[Impeller] Enable impeller_unittests on Windows (flutter/engine#36405)

This commit is contained in:
Brandon DeRosier
2022-09-25 14:20:35 -07:00
committed by GitHub
parent e007527679
commit c1ea726441
2 changed files with 2 additions and 2 deletions

View File

@@ -193,7 +193,7 @@ group("unittests") {
public_deps += [ "//flutter/shell/platform/fuchsia:tests" ]
}
if (is_mac || is_linux) {
if (is_mac || is_linux || is_win) {
public_deps += [ "//flutter/impeller:impeller_unittests" ]
}

View File

@@ -14,7 +14,7 @@ declare_args() {
impeller_enable_metal = is_mac || is_ios
# Whether the OpenGLES backend is enabled.
impeller_enable_opengles = is_mac || is_linux || is_android
impeller_enable_opengles = is_mac || is_linux || is_win || is_android
# Whether the Vulkan backend is enabled.
impeller_enable_vulkan = false