From 6a01df28e0b607c69a9b5109e872b80eade8b53a Mon Sep 17 00:00:00 2001 From: Chris Bracken Date: Thu, 9 Dec 2021 18:33:39 -0800 Subject: [PATCH] Test shell/platform/common a11y code on Windows This enables unittests for the accessibility bridge in common_cpp_unittests, when running on Windows. Previously, we only tested on macOS. Issue: https://github.com/flutter/flutter/issues/77838 --- shell/platform/common/BUILD.gn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/platform/common/BUILD.gn b/shell/platform/common/BUILD.gn index 013e73a6462bd..1125ee35553ce 100644 --- a/shell/platform/common/BUILD.gn +++ b/shell/platform/common/BUILD.gn @@ -187,7 +187,7 @@ if (enable_unittests) { ] # The accessibility bridge only supports MacOS for now. - if (is_mac) { + if (is_mac || is_win) { sources += [ "accessibility_bridge_unittests.cc", "flutter_platform_node_delegate_unittests.cc",