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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
327 public_configs = [ "../..:common_inherited_config" ] | 327 public_configs = [ "../..:common_inherited_config" ] |
328 | 328 |
329 deps = [ | 329 deps = [ |
330 ":audio_processing", | 330 ":audio_processing", |
331 ":audioproc_debug_proto", | 331 ":audioproc_debug_proto", |
332 ":audioproc_protobuf_utils", | 332 ":audioproc_protobuf_utils", |
333 ":audioproc_test_utils", | 333 ":audioproc_test_utils", |
334 "../../system_wrappers", | 334 "../../system_wrappers", |
335 "../../system_wrappers:system_wrappers_default", | 335 "../../system_wrappers:system_wrappers_default", |
336 "../../test:test_support", | 336 "../../test:test_support", |
337 "//build/config/sanitizers:deps", | |
338 "//testing/gtest", | 337 "//testing/gtest", |
339 "//third_party/gflags:gflags", | 338 "//third_party/gflags:gflags", |
340 ] | 339 ] |
341 } # audioproc | 340 } # audioproc |
342 | 341 |
343 rtc_executable("unpack_aecdump") { | 342 rtc_executable("unpack_aecdump") { |
344 testonly = true | 343 testonly = true |
345 sources = [ | 344 sources = [ |
346 "test/unpack.cc", | 345 "test/unpack.cc", |
347 ] | 346 ] |
348 | 347 |
349 configs += [ "../..:common_config" ] | 348 configs += [ "../..:common_config" ] |
350 public_configs = [ "../..:common_inherited_config" ] | 349 public_configs = [ "../..:common_inherited_config" ] |
351 | 350 |
352 deps = [ | 351 deps = [ |
353 ":audio_processing", | 352 ":audio_processing", |
354 ":audioproc_debug_proto", | 353 ":audioproc_debug_proto", |
355 ":audioproc_protobuf_utils", | 354 ":audioproc_protobuf_utils", |
356 ":audioproc_test_utils", | 355 ":audioproc_test_utils", |
357 "../../common_audio", | 356 "../../common_audio", |
358 "../../system_wrappers:system_wrappers_default", | 357 "../../system_wrappers:system_wrappers_default", |
359 "//build/config/sanitizers:deps", | |
360 "//third_party/gflags:gflags", | 358 "//third_party/gflags:gflags", |
361 ] | 359 ] |
362 } # unpack_aecdump | 360 } # unpack_aecdump |
363 | 361 |
364 rtc_executable("audioproc_f") { | 362 rtc_executable("audioproc_f") { |
365 testonly = true | 363 testonly = true |
366 sources = [ | 364 sources = [ |
367 "test/aec_dump_based_simulator.cc", | 365 "test/aec_dump_based_simulator.cc", |
368 "test/aec_dump_based_simulator.h", | 366 "test/aec_dump_based_simulator.h", |
369 "test/audio_processing_simulator.cc", | 367 "test/audio_processing_simulator.cc", |
370 "test/audio_processing_simulator.h", | 368 "test/audio_processing_simulator.h", |
371 "test/audioproc_float.cc", | 369 "test/audioproc_float.cc", |
372 "test/wav_based_simulator.cc", | 370 "test/wav_based_simulator.cc", |
373 "test/wav_based_simulator.h", | 371 "test/wav_based_simulator.h", |
374 ] | 372 ] |
375 | 373 |
376 configs += [ "../..:common_config" ] | 374 configs += [ "../..:common_config" ] |
377 public_configs = [ "../..:common_inherited_config" ] | 375 public_configs = [ "../..:common_inherited_config" ] |
378 | 376 |
379 deps = [ | 377 deps = [ |
380 ":audio_processing", | 378 ":audio_processing", |
381 ":audioproc_debug_proto", | 379 ":audioproc_debug_proto", |
382 ":audioproc_protobuf_utils", | 380 ":audioproc_protobuf_utils", |
383 ":audioproc_test_utils", | 381 ":audioproc_test_utils", |
384 "../../system_wrappers", | 382 "../../system_wrappers", |
385 "../../system_wrappers:system_wrappers_default", | 383 "../../system_wrappers:system_wrappers_default", |
386 "../../test:test_support", | 384 "../../test:test_support", |
387 "//build/config/sanitizers:deps", | |
388 "//testing/gtest", | 385 "//testing/gtest", |
389 "//third_party/gflags:gflags", | 386 "//third_party/gflags:gflags", |
390 ] | 387 ] |
391 } # audioproc_f | 388 } # audioproc_f |
392 | 389 |
393 rtc_source_set("audioproc_test_utils") { | 390 rtc_source_set("audioproc_test_utils") { |
394 testonly = true | 391 testonly = true |
395 sources = [ | 392 sources = [ |
396 "test/audio_buffer_tools.cc", | 393 "test/audio_buffer_tools.cc", |
397 "test/audio_buffer_tools.h", | 394 "test/audio_buffer_tools.h", |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
480 "test/protobuf_utils.cc", | 477 "test/protobuf_utils.cc", |
481 "test/protobuf_utils.h", | 478 "test/protobuf_utils.h", |
482 ] | 479 ] |
483 | 480 |
484 deps = [ | 481 deps = [ |
485 ":audioproc_debug_proto", | 482 ":audioproc_debug_proto", |
486 ] | 483 ] |
487 } | 484 } |
488 } | 485 } |
489 } | 486 } |
OLD | NEW |