summaryrefslogtreecommitdiff
path: root/modules/desktop_capture/mouse_cursor_monitor_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'modules/desktop_capture/mouse_cursor_monitor_unittest.cc')
-rw-r--r--modules/desktop_capture/mouse_cursor_monitor_unittest.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/desktop_capture/mouse_cursor_monitor_unittest.cc b/modules/desktop_capture/mouse_cursor_monitor_unittest.cc
index 7849005f..5e24d45d 100644
--- a/modules/desktop_capture/mouse_cursor_monitor_unittest.cc
+++ b/modules/desktop_capture/mouse_cursor_monitor_unittest.cc
@@ -50,7 +50,10 @@ class MouseCursorMonitorTest : public testing::Test,
// tests. Figure out how to do that without breaking other tests in
// modules_unittests and enable these tests on Mac.
// https://code.google.com/p/webrtc/issues/detail?id=2532
-#if !defined(WEBRTC_MAC)
+//
+// Disabled on Windows due to flake, see:
+// https://code.google.com/p/webrtc/issues/detail?id=3408
+#if !defined(WEBRTC_MAC) && !defined(WEBRTC_WIN)
#define MAYBE(x) x
#else
#define MAYBE(x) DISABLED_##x