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

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

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

Powered by Google App Engine
This is Rietveld 408576698