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 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 | 306 |
307 if (apm_debug_dump) { | 307 if (apm_debug_dump) { |
308 defines = [ "WEBRTC_APM_DEBUG_DUMP=1" ] | 308 defines = [ "WEBRTC_APM_DEBUG_DUMP=1" ] |
309 } else { | 309 } else { |
310 defines = [ "WEBRTC_APM_DEBUG_DUMP=0" ] | 310 defines = [ "WEBRTC_APM_DEBUG_DUMP=0" ] |
311 } | 311 } |
312 } | 312 } |
313 } | 313 } |
314 | 314 |
315 if (rtc_include_tests) { | 315 if (rtc_include_tests) { |
316 rtc_executable("audioproc") { | |
317 testonly = true | |
318 sources = [ | |
319 "test/process_test.cc", | |
320 ] | |
321 | |
322 deps = [ | |
323 ":audio_processing", | |
324 ":audioproc_debug_proto", | |
325 ":audioproc_protobuf_utils", | |
326 ":audioproc_test_utils", | |
327 "../../system_wrappers", | |
328 "../../system_wrappers:system_wrappers_default", | |
329 "../../test:test_support", | |
330 "//testing/gtest", | |
331 "//third_party/gflags:gflags", | |
332 ] | |
333 } # audioproc | |
334 | |
335 rtc_executable("unpack_aecdump") { | 316 rtc_executable("unpack_aecdump") { |
336 testonly = true | 317 testonly = true |
337 sources = [ | 318 sources = [ |
338 "test/unpack.cc", | 319 "test/unpack.cc", |
339 ] | 320 ] |
340 | 321 |
341 deps = [ | 322 deps = [ |
342 ":audio_processing", | 323 ":audio_processing", |
343 ":audioproc_debug_proto", | 324 ":audioproc_debug_proto", |
344 ":audioproc_protobuf_utils", | 325 ":audioproc_protobuf_utils", |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
461 "test/protobuf_utils.cc", | 442 "test/protobuf_utils.cc", |
462 "test/protobuf_utils.h", | 443 "test/protobuf_utils.h", |
463 ] | 444 ] |
464 | 445 |
465 deps = [ | 446 deps = [ |
466 ":audioproc_debug_proto", | 447 ":audioproc_debug_proto", |
467 ] | 448 ] |
468 } | 449 } |
469 } | 450 } |
470 } | 451 } |
OLD | NEW |