Exclude frame_analyzer_host build on win.

No-Try: True
Bug: webrtc:11474
Change-Id: If8393410ff0d781c3aa4d5fceebdcc399f77f9e5
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/172585
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Reviewed-by: Sam Zackrisson <saza@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#30962}
diff --git a/rtc_tools/BUILD.gn b/rtc_tools/BUILD.gn
index 1bbebb0..0b9b213 100644
--- a/rtc_tools/BUILD.gn
+++ b/rtc_tools/BUILD.gn
@@ -130,7 +130,9 @@
   ]
 }
 
-if (!build_with_chromium && !build_with_mozilla) {
+# TODO(bugs.webrtc.org/11474): Enable this on win if needed. For now it
+# is only required for Linux and Android.
+if (!build_with_chromium && !build_with_mozilla && !is_win) {
   action("frame_analyzer_host") {
     script = "//tools_webrtc/executable_host_build.py"
     outputs = [ "${root_out_dir}/frame_analyzer_host" ]
@@ -369,9 +371,7 @@
   rtc_executable("yuv_to_ivf_converter") {
     visibility = [ "*" ]
     testonly = true
-    sources = [
-      "converter/yuv_to_ivf_converter.cc",
-    ]
+    sources = [ "converter/yuv_to_ivf_converter.cc" ]
     deps = [
       "../api:create_frame_generator",
       "../api:frame_generator_api",