From a8e2c63a9935f38b670810c041e4a978f5a324b1 Mon Sep 17 00:00:00 2001 From: "henrik.lundin" Date: Thu, 11 May 2017 07:18:06 -0700 Subject: [PATCH] Add untracked header files to GN targets in audio_coding BUG=webrtc:7619 Review-Url: https://codereview.webrtc.org/2875033002 Cr-Commit-Position: refs/heads/master@{#18101} --- webrtc/modules/audio_coding/BUILD.gn | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/webrtc/modules/audio_coding/BUILD.gn b/webrtc/modules/audio_coding/BUILD.gn index 09c591f34f..0b1ec180f0 100644 --- a/webrtc/modules/audio_coding/BUILD.gn +++ b/webrtc/modules/audio_coding/BUILD.gn @@ -1147,22 +1147,37 @@ if (rtc_include_tests) { visibility = [ "//webrtc/modules:modules_tests" ] } sources = [ + "test/ACMTest.h", "test/APITest.cc", + "test/APITest.h", "test/Channel.cc", + "test/Channel.h", "test/EncodeDecodeTest.cc", + "test/EncodeDecodeTest.h", "test/PCMFile.cc", + "test/PCMFile.h", "test/PacketLossTest.cc", + "test/PacketLossTest.h", "test/RTPFile.cc", + "test/RTPFile.h", "test/TestAllCodecs.cc", + "test/TestAllCodecs.h", "test/TestRedFec.cc", + "test/TestRedFec.h", "test/TestStereo.cc", + "test/TestStereo.h", "test/TestVADDTX.cc", + "test/TestVADDTX.h", "test/Tester.cc", "test/TwoWayCommunication.cc", + "test/TwoWayCommunication.h", "test/iSACTest.cc", + "test/iSACTest.h", "test/opus_test.cc", + "test/opus_test.h", "test/target_delay_unittest.cc", "test/utility.cc", + "test/utility.h", ] deps = [ ":audio_coding", @@ -1263,9 +1278,12 @@ if (rtc_include_tests) { testonly = true sources = [ "test/Channel.cc", + "test/Channel.h", "test/PCMFile.cc", + "test/PCMFile.h", "test/delay_test.cc", "test/utility.cc", + "test/utility.h", ] deps = [ @@ -1288,7 +1306,9 @@ if (rtc_include_tests) { testonly = true sources = [ "test/Channel.cc", + "test/Channel.h", "test/PCMFile.cc", + "test/PCMFile.h", "test/insert_packet_with_timing.cc", ] @@ -1681,6 +1701,7 @@ if (rtc_include_tests) { configs += [ ":RTPencode_config" ] sources = [ + "neteq/test/PayloadTypes.h", "neteq/test/RTPencode.cc", ]