| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 "../api:transport_api", | 111 "../api:transport_api", |
| 112 "../audio", | 112 "../audio", |
| 113 "../logging:rtc_event_log_api", | 113 "../logging:rtc_event_log_api", |
| 114 "../logging:rtc_event_log_impl", | 114 "../logging:rtc_event_log_impl", |
| 115 "../modules/bitrate_controller", | 115 "../modules/bitrate_controller", |
| 116 "../modules/congestion_controller", | 116 "../modules/congestion_controller", |
| 117 "../modules/pacing", | 117 "../modules/pacing", |
| 118 "../modules/rtp_rtcp", | 118 "../modules/rtp_rtcp", |
| 119 "../modules/utility", | 119 "../modules/utility", |
| 120 "../rtc_base:rtc_task_queue", | 120 "../rtc_base:rtc_task_queue", |
| 121 "../rtc_base:sequenced_task_checker", |
| 121 "../system_wrappers", | 122 "../system_wrappers", |
| 122 "../video", | 123 "../video", |
| 123 ] | 124 ] |
| 124 } | 125 } |
| 125 | 126 |
| 126 if (rtc_include_tests) { | 127 if (rtc_include_tests) { |
| 127 rtc_source_set("call_tests") { | 128 rtc_source_set("call_tests") { |
| 128 testonly = true | 129 testonly = true |
| 129 | 130 |
| 130 # Skip restricting visibility on mobile platforms since the tests on those | 131 # Skip restricting visibility on mobile platforms since the tests on those |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 sources = [ | 225 sources = [ |
| 225 "test/mock_rtp_packet_sink_interface.h", | 226 "test/mock_rtp_packet_sink_interface.h", |
| 226 ] | 227 ] |
| 227 deps = [ | 228 deps = [ |
| 228 ":rtp_interfaces", | 229 ":rtp_interfaces", |
| 229 "../test:test_support", | 230 "../test:test_support", |
| 230 "//testing/gmock", | 231 "//testing/gmock", |
| 231 ] | 232 ] |
| 232 } | 233 } |
| 233 } | 234 } |
| OLD | NEW |