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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 deps = [ | 89 deps = [ |
90 ":call", | 90 ":call", |
91 "../base:rtc_base_approved", | 91 "../base:rtc_base_approved", |
92 "../logging:rtc_event_log_api", | 92 "../logging:rtc_event_log_api", |
93 "../modules/audio_device:mock_audio_device", | 93 "../modules/audio_device:mock_audio_device", |
94 "../modules/audio_mixer", | 94 "../modules/audio_mixer", |
95 "../modules/bitrate_controller", | 95 "../modules/bitrate_controller", |
96 "../modules/congestion_controller:mock_congestion_controller", | 96 "../modules/congestion_controller:mock_congestion_controller", |
97 "../modules/pacing", | 97 "../modules/pacing", |
98 "../modules/rtp_rtcp", | 98 "../modules/rtp_rtcp", |
| 99 "../modules/rtp_rtcp:mock_rtp_rtcp", |
99 "../system_wrappers", | 100 "../system_wrappers", |
100 "../test:audio_codec_mocks", | 101 "../test:audio_codec_mocks", |
101 "../test:direct_transport", | 102 "../test:direct_transport", |
102 "../test:test_common", | 103 "../test:test_common", |
103 "../test:test_support", | 104 "../test:test_support", |
104 "../test:video_test_common", | 105 "../test:video_test_common", |
105 "//testing/gmock", | 106 "//testing/gmock", |
106 "//testing/gtest", | 107 "//testing/gtest", |
107 ] | 108 ] |
108 if (!build_with_chromium && is_clang) { | 109 if (!build_with_chromium && is_clang) { |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 "//testing/gtest", | 146 "//testing/gtest", |
146 "//webrtc/test:field_trial", | 147 "//webrtc/test:field_trial", |
147 "//webrtc/test:test_common", | 148 "//webrtc/test:test_common", |
148 ] | 149 ] |
149 if (!build_with_chromium && is_clang) { | 150 if (!build_with_chromium && is_clang) { |
150 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 151 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
151 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 152 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
152 } | 153 } |
153 } | 154 } |
154 } | 155 } |
OLD | NEW |