OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 } | 165 } |
166 | 166 |
167 if (!build_with_chromium && is_clang) { | 167 if (!build_with_chromium && is_clang) { |
168 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 168 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
169 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 169 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
170 } | 170 } |
171 | 171 |
172 deps = [ | 172 deps = [ |
173 "../..:webrtc_common", | 173 "../..:webrtc_common", |
174 "../../api:transport_api", | 174 "../../api:transport_api", |
| 175 "../../api/audio_codecs:audio_codecs_api", |
175 "../../base:gtest_prod", | 176 "../../base:gtest_prod", |
176 "../../base:rtc_base_approved", | 177 "../../base:rtc_base_approved", |
177 "../../base:rtc_task_queue", | 178 "../../base:rtc_task_queue", |
178 "../../call:call_interfaces", | 179 "../../call:call_interfaces", |
179 "../../common_video", | 180 "../../common_video", |
180 "../../logging:rtc_event_log_api", | 181 "../../logging:rtc_event_log_api", |
181 "../../system_wrappers", | 182 "../../system_wrappers", |
| 183 "../audio_coding:audio_format_conversion", |
182 "../remote_bitrate_estimator", | 184 "../remote_bitrate_estimator", |
183 ] | 185 ] |
184 | 186 |
185 # TODO(jschuh): Bug 1348: fix this warning. | 187 # TODO(jschuh): Bug 1348: fix this warning. |
186 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 188 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
187 | 189 |
188 if (is_win) { | 190 if (is_win) { |
189 cflags = [ | 191 cflags = [ |
190 # TODO(kjellander): Bug 261: fix this warning. | 192 # TODO(kjellander): Bug 261: fix this warning. |
191 "/wd4373", # virtual function override. | 193 "/wd4373", # virtual function override. |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 ] | 309 ] |
308 | 310 |
309 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. | 311 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. |
310 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 312 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
311 if (!build_with_chromium && is_clang) { | 313 if (!build_with_chromium && is_clang) { |
312 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 314 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
313 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 315 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
314 } | 316 } |
315 } | 317 } |
316 } | 318 } |
OLD | NEW |