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

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

Issue 3007763002: Move array_view.h to webrtc/api/ (Closed)
Patch Set: Created 3 years, 3 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 25 matching lines...) Expand all
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. See also TODO for |mock_rtp_interfaces|. 37 # when interfaces have stabilized. See also TODO for |mock_rtp_interfaces|.
38 rtc_source_set("rtp_interfaces") { 38 rtc_source_set("rtp_interfaces") {
39 sources = [ 39 sources = [
40 "rtcp_packet_sink_interface.h", 40 "rtcp_packet_sink_interface.h",
41 "rtp_packet_sink_interface.h", 41 "rtp_packet_sink_interface.h",
42 "rtp_stream_receiver_controller_interface.h", 42 "rtp_stream_receiver_controller_interface.h",
43 "rtp_transport_controller_send_interface.h", 43 "rtp_transport_controller_send_interface.h",
44 ] 44 ]
45 deps = [ 45 deps = [
46 "../api:array_view",
46 "../rtc_base:rtc_base_approved", 47 "../rtc_base:rtc_base_approved",
47 ] 48 ]
48 } 49 }
49 50
50 rtc_source_set("rtp_receiver") { 51 rtc_source_set("rtp_receiver") {
51 sources = [ 52 sources = [
52 "rtcp_demuxer.cc", 53 "rtcp_demuxer.cc",
53 "rtcp_demuxer.h", 54 "rtcp_demuxer.h",
54 "rtp_demuxer.cc", 55 "rtp_demuxer.cc",
55 "rtp_demuxer.h", 56 "rtp_demuxer.h",
56 "rtp_rtcp_demuxer_helper.cc", 57 "rtp_rtcp_demuxer_helper.cc",
57 "rtp_rtcp_demuxer_helper.h", 58 "rtp_rtcp_demuxer_helper.h",
58 "rtp_stream_receiver_controller.cc", 59 "rtp_stream_receiver_controller.cc",
59 "rtp_stream_receiver_controller.h", 60 "rtp_stream_receiver_controller.h",
60 "rtx_receive_stream.cc", 61 "rtx_receive_stream.cc",
61 "rtx_receive_stream.h", 62 "rtx_receive_stream.h",
62 "ssrc_binding_observer.h", 63 "ssrc_binding_observer.h",
63 ] 64 ]
64 deps = [ 65 deps = [
65 ":rtp_interfaces", 66 ":rtp_interfaces",
66 "..:webrtc_common", 67 "..:webrtc_common",
68 "../api:array_view",
67 "../modules/rtp_rtcp", 69 "../modules/rtp_rtcp",
68 "../rtc_base:rtc_base_approved", 70 "../rtc_base:rtc_base_approved",
69 ] 71 ]
70 } 72 }
71 73
72 rtc_source_set("rtp_sender") { 74 rtc_source_set("rtp_sender") {
73 sources = [ 75 sources = [
74 "rtp_transport_controller_send.cc", 76 "rtp_transport_controller_send.cc",
75 "rtp_transport_controller_send.h", 77 "rtp_transport_controller_send.h",
76 ] 78 ]
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 "rtp_rtcp_demuxer_helper_unittest.cc", 162 "rtp_rtcp_demuxer_helper_unittest.cc",
161 "rtx_receive_stream_unittest.cc", 163 "rtx_receive_stream_unittest.cc",
162 ] 164 ]
163 deps = [ 165 deps = [
164 ":call", 166 ":call",
165 ":mock_rtp_interfaces", 167 ":mock_rtp_interfaces",
166 ":rtp_interfaces", 168 ":rtp_interfaces",
167 ":rtp_receiver", 169 ":rtp_receiver",
168 ":rtp_sender", 170 ":rtp_sender",
169 "..:webrtc_common", 171 "..:webrtc_common",
172 "../api:array_view",
170 "../api:mock_audio_mixer", 173 "../api:mock_audio_mixer",
171 "../logging:rtc_event_log_api", 174 "../logging:rtc_event_log_api",
172 "../modules/audio_device:mock_audio_device", 175 "../modules/audio_device:mock_audio_device",
173 "../modules/audio_mixer", 176 "../modules/audio_mixer",
174 "../modules/bitrate_controller", 177 "../modules/bitrate_controller",
175 "../modules/congestion_controller:mock_congestion_controller", 178 "../modules/congestion_controller:mock_congestion_controller",
176 "../modules/pacing", 179 "../modules/pacing",
177 "../modules/rtp_rtcp", 180 "../modules/rtp_rtcp",
178 "../modules/rtp_rtcp:mock_rtp_rtcp", 181 "../modules/rtp_rtcp:mock_rtp_rtcp",
179 "../modules/utility:mock_process_thread", 182 "../modules/utility:mock_process_thread",
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 sources = [ 244 sources = [
242 "test/mock_rtp_packet_sink_interface.h", 245 "test/mock_rtp_packet_sink_interface.h",
243 ] 246 ]
244 deps = [ 247 deps = [
245 ":rtp_interfaces", 248 ":rtp_interfaces",
246 "../test:test_support", 249 "../test:test_support",
247 "//testing/gmock", 250 "//testing/gmock",
248 ] 251 ]
249 } 252 }
250 } 253 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698