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

Side by Side Diff: webrtc/modules/audio_processing/BUILD.gn

Issue 2288153002: Fix Chromium clang plugin warnings (Closed)
Patch Set: Created 4 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
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/aec/echo_cancellation.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("//build/config/arm.gni") 9 import("//build/config/arm.gni")
10 import("//third_party/protobuf/proto_library.gni") 10 import("//third_party/protobuf/proto_library.gni")
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 "aec/aec_rdft_mips.cc", 232 "aec/aec_rdft_mips.cc",
233 ] 233 ]
234 } 234 }
235 } else { 235 } else {
236 sources += [ "aecm/aecm_core_c.cc" ] 236 sources += [ "aecm/aecm_core_c.cc" ]
237 } 237 }
238 238
239 # TODO(jschuh): Bug 1348: fix this warning. 239 # TODO(jschuh): Bug 1348: fix this warning.
240 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 240 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
241 241
242 if (is_clang) {
243 # Suppress warnings from the Chromium Clang plugins (bugs.webrtc.org/163).
244 configs -= [ "//build/config/clang:find_bad_constructs" ]
245 }
246
247 deps += [ 242 deps += [
248 "../../base:rtc_base_approved", 243 "../../base:rtc_base_approved",
249 "../../common_audio", 244 "../../common_audio",
250 "../../system_wrappers", 245 "../../system_wrappers",
251 ] 246 ]
252 } 247 }
253 248
254 if (rtc_enable_protobuf) { 249 if (rtc_enable_protobuf) {
255 proto_library("audioproc_debug_proto") { 250 proto_library("audioproc_debug_proto") {
256 sources = [ 251 sources = [
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 "test/protobuf_utils.cc", 501 "test/protobuf_utils.cc",
507 "test/protobuf_utils.h", 502 "test/protobuf_utils.h",
508 ] 503 ]
509 504
510 deps = [ 505 deps = [
511 ":audioproc_debug_proto", 506 ":audioproc_debug_proto",
512 ] 507 ]
513 } 508 }
514 } 509 }
515 } 510 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/aec/echo_cancellation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698