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 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
312 } else { | 312 } else { |
313 defines = [ "WEBRTC_AEC_DEBUG_DUMP=0" ] | 313 defines = [ "WEBRTC_AEC_DEBUG_DUMP=0" ] |
314 } | 314 } |
315 } | 315 } |
316 } | 316 } |
317 | 317 |
318 if (rtc_include_tests) { | 318 if (rtc_include_tests) { |
319 source_set("audioproc_test_utils") { | 319 source_set("audioproc_test_utils") { |
320 testonly = true | 320 testonly = true |
321 sources = [ | 321 sources = [ |
322 "test/audio_buffer_tools.cc", | |
phoglund_chromium
2016/07/26 12:33:29
Did you mean to make this change in this cl? If so
ehmaldonado_webrtc
2016/07/26 12:44:07
Yes, I meant to change it.
Done.
| |
323 "test/audio_buffer_tools.h", | |
322 "test/test_utils.cc", | 324 "test/test_utils.cc", |
323 "test/test_utils.h", | 325 "test/test_utils.h", |
324 ] | 326 ] |
325 | 327 |
326 configs += [ "../..:common_config" ] | 328 configs += [ "../..:common_config" ] |
327 public_configs = [ "../..:common_inherited_config" ] | 329 public_configs = [ "../..:common_inherited_config" ] |
328 | 330 |
329 if (is_clang) { | 331 if (is_clang) { |
330 # Suppress warnings from the Chromium Clang plugins (bugs.webrtc.org/163). | 332 # Suppress warnings from the Chromium Clang plugins (bugs.webrtc.org/163). |
331 configs -= [ "//build/config/clang:find_bad_constructs" ] | 333 configs -= [ "//build/config/clang:find_bad_constructs" ] |
(...skipping 18 matching lines...) Expand all Loading... | |
350 "test/protobuf_utils.cc", | 352 "test/protobuf_utils.cc", |
351 "test/protobuf_utils.h", | 353 "test/protobuf_utils.h", |
352 ] | 354 ] |
353 | 355 |
354 deps = [ | 356 deps = [ |
355 ":audioproc_unittest_proto", | 357 ":audioproc_unittest_proto", |
356 ] | 358 ] |
357 } | 359 } |
358 } | 360 } |
359 } | 361 } |
OLD | NEW |