aboutsummaryrefslogtreecommitdiff
path: root/rtc_tools
diff options
context:
space:
mode:
authorMirko Bonadei <mbonadei@webrtc.org>2020-04-01 13:26:24 +0200
committerCommit Bot <commit-bot@chromium.org>2020-04-01 11:43:37 +0000
commit647968f7c9ce8bc7051306c63fc7a866b1c94064 (patch)
treede2d45dd39c62eeda11c854ee3e6dea68854b060 /rtc_tools
parent486232025b0bbb67c2f04e9bb4261206f68eefea (diff)
downloadwebrtc-647968f7c9ce8bc7051306c63fc7a866b1c94064.tar.gz
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}
Diffstat (limited to 'rtc_tools')
-rw-r--r--rtc_tools/BUILD.gn8
1 files changed, 4 insertions, 4 deletions
diff --git a/rtc_tools/BUILD.gn b/rtc_tools/BUILD.gn
index 1bbebb005e..0b9b2134a8 100644
--- a/rtc_tools/BUILD.gn
+++ b/rtc_tools/BUILD.gn
@@ -130,7 +130,9 @@ rtc_executable("frame_analyzer") {
]
}
-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 @@ if (rtc_include_tests) {
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",