| OLD | NEW |
| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 ] | 69 ] |
| 70 } | 70 } |
| 71 | 71 |
| 72 rtc_source_set("rtp_sender") { | 72 rtc_source_set("rtp_sender") { |
| 73 sources = [ | 73 sources = [ |
| 74 "rtp_transport_controller_send.cc", | 74 "rtp_transport_controller_send.cc", |
| 75 "rtp_transport_controller_send.h", | 75 "rtp_transport_controller_send.h", |
| 76 ] | 76 ] |
| 77 deps = [ | 77 deps = [ |
| 78 ":rtp_interfaces", | 78 ":rtp_interfaces", |
| 79 "..:webrtc_common", |
| 79 "../modules/congestion_controller", | 80 "../modules/congestion_controller", |
| 80 "../rtc_base:rtc_base_approved", | 81 "../rtc_base:rtc_base_approved", |
| 81 ] | 82 ] |
| 82 } | 83 } |
| 83 | 84 |
| 84 rtc_static_library("call") { | 85 rtc_static_library("call") { |
| 85 sources = [ | 86 sources = [ |
| 86 "bitrate_allocator.cc", | 87 "bitrate_allocator.cc", |
| 87 "call.cc", | 88 "call.cc", |
| 88 "callfactory.cc", | 89 "callfactory.cc", |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 sources = [ | 224 sources = [ |
| 224 "test/mock_rtp_packet_sink_interface.h", | 225 "test/mock_rtp_packet_sink_interface.h", |
| 225 ] | 226 ] |
| 226 deps = [ | 227 deps = [ |
| 227 ":rtp_interfaces", | 228 ":rtp_interfaces", |
| 228 "../test:test_support", | 229 "../test:test_support", |
| 229 "//testing/gmock", | 230 "//testing/gmock", |
| 230 ] | 231 ] |
| 231 } | 232 } |
| 232 } | 233 } |
| OLD | NEW |