Skip to content

Commit

Permalink
[Impeller] Enable impeller_unittests on Windows (flutter#36405)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdero authored Sep 25, 2022
1 parent 315d0c2 commit 1c232b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -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" ]
}

Expand Down
2 changes: 1 addition & 1 deletion impeller/tools/impeller.gni
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1c232b5

Please sign in to comment.