Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(241)

Side by Side Diff: webrtc/audio/BUILD.gn

Issue 2886993005: Introduce RtpStreamReceiver and RtpStreamReceiverControllerInterface. (Closed)
Patch Set: Protect construction of FlexfecReceiveStreamImpl. Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import("../webrtc.gni") 9 import("../webrtc.gni")
10 if (is_android) { 10 if (is_android) {
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 sources = [ 72 sources = [
73 "audio_receive_stream_unittest.cc", 73 "audio_receive_stream_unittest.cc",
74 "audio_send_stream_unittest.cc", 74 "audio_send_stream_unittest.cc",
75 "audio_state_unittest.cc", 75 "audio_state_unittest.cc",
76 ] 76 ]
77 deps = [ 77 deps = [
78 ":audio", 78 ":audio",
79 "../api:mock_audio_mixer", 79 "../api:mock_audio_mixer",
80 "../base:rtc_base_approved", 80 "../base:rtc_base_approved",
81 "../base:rtc_task_queue", 81 "../base:rtc_task_queue",
82 "../call:rtp_receiver",
82 "../modules/audio_device:mock_audio_device", 83 "../modules/audio_device:mock_audio_device",
83 "../modules/audio_mixer:audio_mixer_impl", 84 "../modules/audio_mixer:audio_mixer_impl",
84 "../modules/congestion_controller:congestion_controller", 85 "../modules/congestion_controller:congestion_controller",
85 "../modules/congestion_controller:mock_congestion_controller", 86 "../modules/congestion_controller:mock_congestion_controller",
86 "../modules/pacing:pacing", 87 "../modules/pacing:pacing",
87 "../test:test_common", 88 "../test:test_common",
88 "../test:test_support", 89 "../test:test_support",
89 "utility:utility_tests", 90 "utility:utility_tests",
90 "//testing/gmock", 91 "//testing/gmock",
91 "//testing/gtest", 92 "//testing/gtest",
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 "//resources/voice_engine/audio_tiny48.wav", 124 "//resources/voice_engine/audio_tiny48.wav",
124 ] 125 ]
125 126
126 if (!build_with_chromium && is_clang) { 127 if (!build_with_chromium && is_clang) {
127 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163) 128 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
128 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 129 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
129 } 130 }
130 } 131 }
131 } 132 }
132 } 133 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/audio/audio_receive_stream.h » ('j') | webrtc/call/flexfec_receive_stream_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698