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

Side by Side Diff: webrtc/call/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 10
(...skipping 20 matching lines...) Expand all
31 "../base:rtc_base", 31 "../base:rtc_base",
32 "../base:rtc_base_approved", 32 "../base:rtc_base_approved",
33 ] 33 ]
34 } 34 }
35 35
36 # TODO(nisse): These RTP targets should be moved elsewhere 36 # TODO(nisse): These RTP targets should be moved elsewhere
37 # when interfaces have stabilized. 37 # when interfaces have stabilized.
38 rtc_source_set("rtp_interfaces") { 38 rtc_source_set("rtp_interfaces") {
39 sources = [ 39 sources = [
40 "rtp_packet_sink_interface.h", 40 "rtp_packet_sink_interface.h",
41 "rtp_stream_receiver_controller_interface.h",
41 "rtp_transport_controller_send_interface.h", 42 "rtp_transport_controller_send_interface.h",
42 ] 43 ]
43 } 44 }
44 45
45 rtc_source_set("rtp_receiver") { 46 rtc_source_set("rtp_receiver") {
46 sources = [ 47 sources = [
47 "rtp_demuxer.cc", 48 "rtp_demuxer.cc",
48 "rtp_demuxer.h", 49 "rtp_demuxer.h",
50 "rtp_stream_receiver_controller.cc",
51 "rtp_stream_receiver_controller.h",
49 "rtx_receive_stream.cc", 52 "rtx_receive_stream.cc",
50 "rtx_receive_stream.h", 53 "rtx_receive_stream.h",
51 ] 54 ]
52 deps = [ 55 deps = [
53 ":rtp_interfaces", 56 ":rtp_interfaces",
54 "../base:rtc_base_approved", 57 "../base:rtc_base_approved",
55 "../modules/rtp_rtcp", 58 "../modules/rtp_rtcp",
56 ] 59 ]
57 } 60 }
58 61
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 "//testing/gtest", 194 "//testing/gtest",
192 "//webrtc/test:field_trial", 195 "//webrtc/test:field_trial",
193 "//webrtc/test:test_common", 196 "//webrtc/test:test_common",
194 ] 197 ]
195 if (!build_with_chromium && is_clang) { 198 if (!build_with_chromium && is_clang) {
196 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 199 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
197 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 200 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
198 } 201 }
199 } 202 }
200 } 203 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698