Index: mojo/public/cpp/utility/tests/BUILD.gn |
diff --git a/mojo/public/cpp/utility/tests/BUILD.gn b/mojo/public/cpp/utility/tests/BUILD.gn |
index dd1d1544b8b293d3ae4b9fee01fe64a1238249cf..67419d4b4243526dd5a9930a0fbdbabbacfbd431 100644 |
--- a/mojo/public/cpp/utility/tests/BUILD.gn |
+++ b/mojo/public/cpp/utility/tests/BUILD.gn |
@@ -13,8 +13,14 @@ test("mojo_public_utility_unittests") { |
] |
sources = [ |
- "mutex_unittest.cc", |
"run_loop_unittest.cc", |
- "thread_unittest.cc", |
] |
+ |
+ # crbug.com/342893 |
+ if (!is_win) { |
+ sources += [ |
+ "mutex_unittest.cc", |
+ "thread_unittest.cc", |
+ ] |
+ } |
} |