From 39bab5afb51a40f77fdaab1ea38b9136acae9035 Mon Sep 17 00:00:00 2001 From: Jerome Humbert Date: Mon, 28 Oct 2019 18:12:51 +0000 Subject: [PATCH] Add missing assert.h for win no-test build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add some missing `#include ` for Windows build when compiling without RTC tests (rtc_include_tests = false) with the MSVC compiler (is_clang=false, use_lld=false). Bug: None Change-Id: Ie9861100efeae87f4c4e29303d62293ad541125a Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/158533 Reviewed-by: Patrik Höglund Reviewed-by: Gustaf Ullberg Commit-Queue: Patrik Höglund Cr-Commit-Position: refs/heads/master@{#29811} --- audio/channel_receive.cc | 2 ++ modules/video_capture/windows/device_info_ds.cc | 1 + test/rtp_file_reader.cc | 1 + 3 files changed, 4 insertions(+) diff --git a/audio/channel_receive.cc b/audio/channel_receive.cc index e19a49dfd5..502818f1c9 100644 --- a/audio/channel_receive.cc +++ b/audio/channel_receive.cc @@ -10,6 +10,8 @@ #include "audio/channel_receive.h" +#include + #include #include #include diff --git a/modules/video_capture/windows/device_info_ds.cc b/modules/video_capture/windows/device_info_ds.cc index 9ad07595da..5018f520e6 100644 --- a/modules/video_capture/windows/device_info_ds.cc +++ b/modules/video_capture/windows/device_info_ds.cc @@ -10,6 +10,7 @@ #include "modules/video_capture/windows/device_info_ds.h" +#include #include #include "modules/video_capture/video_capture_config.h" diff --git a/test/rtp_file_reader.cc b/test/rtp_file_reader.cc index 9454d6fc66..336beff1e7 100644 --- a/test/rtp_file_reader.cc +++ b/test/rtp_file_reader.cc @@ -10,6 +10,7 @@ #include "test/rtp_file_reader.h" +#include #include #include