| 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("//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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |