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

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

Issue 2647003002: GN: Make audio_processing_unittests compile with rtc_enable_protobuf=false (Closed)
Patch Set: Revert mb_config.pyl Created 3 years, 11 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 | « webrtc/BUILD.gn ('k') | no next file » | 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 411 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 "aec/system_delay_unittest.cc", 422 "aec/system_delay_unittest.cc",
423 "agc/agc_manager_direct_unittest.cc", 423 "agc/agc_manager_direct_unittest.cc",
424 "agc/loudness_histogram_unittest.cc", 424 "agc/loudness_histogram_unittest.cc",
425 "agc/mock_agc.h", 425 "agc/mock_agc.h",
426 "audio_buffer_unittest.cc", 426 "audio_buffer_unittest.cc",
427 "beamformer/array_util_unittest.cc", 427 "beamformer/array_util_unittest.cc",
428 "beamformer/complex_matrix_unittest.cc", 428 "beamformer/complex_matrix_unittest.cc",
429 "beamformer/covariance_matrix_generator_unittest.cc", 429 "beamformer/covariance_matrix_generator_unittest.cc",
430 "beamformer/matrix_unittest.cc", 430 "beamformer/matrix_unittest.cc",
431 "beamformer/mock_nonlinear_beamformer.h", 431 "beamformer/mock_nonlinear_beamformer.h",
432 "beamformer/nonlinear_beamformer_unittest.cc",
433 "config_unittest.cc", 432 "config_unittest.cc",
434 "echo_cancellation_impl_unittest.cc", 433 "echo_cancellation_impl_unittest.cc",
435 "splitting_filter_unittest.cc", 434 "splitting_filter_unittest.cc",
436 "transient/dyadic_decimator_unittest.cc", 435 "transient/dyadic_decimator_unittest.cc",
437 "transient/file_utils.cc", 436 "transient/file_utils.cc",
438 "transient/file_utils.h", 437 "transient/file_utils.h",
439 "transient/file_utils_unittest.cc", 438 "transient/file_utils_unittest.cc",
440 "transient/moving_moments_unittest.cc", 439 "transient/moving_moments_unittest.cc",
441 "transient/transient_detector_unittest.cc", 440 "transient/transient_detector_unittest.cc",
442 "transient/transient_suppressor_unittest.cc", 441 "transient/transient_suppressor_unittest.cc",
443 "transient/wpd_node_unittest.cc", 442 "transient/wpd_node_unittest.cc",
444 "transient/wpd_tree_unittest.cc", 443 "transient/wpd_tree_unittest.cc",
445 "utility/block_mean_calculator_unittest.cc", 444 "utility/block_mean_calculator_unittest.cc",
446 "utility/delay_estimator_unittest.cc", 445 "utility/delay_estimator_unittest.cc",
447 "vad/gmm_unittest.cc", 446 "vad/gmm_unittest.cc",
448 "vad/pitch_based_vad_unittest.cc", 447 "vad/pitch_based_vad_unittest.cc",
449 "vad/pitch_internal_unittest.cc", 448 "vad/pitch_internal_unittest.cc",
450 "vad/pole_zero_filter_unittest.cc", 449 "vad/pole_zero_filter_unittest.cc",
451 "vad/standalone_vad_unittest.cc", 450 "vad/standalone_vad_unittest.cc",
452 "vad/vad_audio_proc_unittest.cc", 451 "vad/vad_audio_proc_unittest.cc",
453 "vad/vad_circular_buffer_unittest.cc", 452 "vad/vad_circular_buffer_unittest.cc",
454 "vad/voice_activity_detector_unittest.cc", 453 "vad/voice_activity_detector_unittest.cc",
455 ] 454 ]
456 455
457 deps = [ 456 deps = [
458 ":audio_processing", 457 ":audio_processing",
459 ":audioproc_debug_proto",
460 ":audioproc_test_utils", 458 ":audioproc_test_utils",
461 "../..:webrtc_common", 459 "../..:webrtc_common",
462 "../../base:gtest_prod", 460 "../../base:gtest_prod",
463 "../../base:rtc_base", 461 "../../base:rtc_base",
464 "../../base:rtc_base_approved", 462 "../../base:rtc_base_approved",
465 "../../common_audio:common_audio", 463 "../../common_audio:common_audio",
466 "../../system_wrappers:system_wrappers", 464 "../../system_wrappers:system_wrappers",
467 "../../test:test_support", 465 "../../test:test_support",
468 "../audio_coding:neteq_unittest_tools", 466 "../audio_coding:neteq_unittest_tools",
469 "//testing/gmock", 467 "//testing/gmock",
(...skipping 20 matching lines...) Expand all
490 488
491 if (rtc_prefer_fixed_point) { 489 if (rtc_prefer_fixed_point) {
492 defines += [ "WEBRTC_AUDIOPROC_FIXED_PROFILE" ] 490 defines += [ "WEBRTC_AUDIOPROC_FIXED_PROFILE" ]
493 } else { 491 } else {
494 defines += [ "WEBRTC_AUDIOPROC_FLOAT_PROFILE" ] 492 defines += [ "WEBRTC_AUDIOPROC_FLOAT_PROFILE" ]
495 } 493 }
496 494
497 if (rtc_enable_protobuf) { 495 if (rtc_enable_protobuf) {
498 defines += [ "WEBRTC_AUDIOPROC_DEBUG_DUMP" ] 496 defines += [ "WEBRTC_AUDIOPROC_DEBUG_DUMP" ]
499 deps += [ 497 deps += [
498 ":audioproc_debug_proto",
500 ":audioproc_protobuf_utils", 499 ":audioproc_protobuf_utils",
501 ":audioproc_unittest_proto", 500 ":audioproc_unittest_proto",
502 ] 501 ]
503 sources += [ 502 sources += [
504 "aec3/block_framer_unittest.cc", 503 "aec3/block_framer_unittest.cc",
505 "aec3/block_processor_unittest.cc", 504 "aec3/block_processor_unittest.cc",
506 "aec3/cascaded_biquad_filter_unittest.cc", 505 "aec3/cascaded_biquad_filter_unittest.cc",
507 "aec3/echo_canceller3_unittest.cc", 506 "aec3/echo_canceller3_unittest.cc",
508 "aec3/frame_blocker_unittest.cc", 507 "aec3/frame_blocker_unittest.cc",
509 "aec3/mock/mock_block_processor.h", 508 "aec3/mock/mock_block_processor.h",
510 "audio_processing_impl_locking_unittest.cc", 509 "audio_processing_impl_locking_unittest.cc",
511 "audio_processing_impl_unittest.cc", 510 "audio_processing_impl_unittest.cc",
512 "audio_processing_unittest.cc", 511 "audio_processing_unittest.cc",
512 "beamformer/nonlinear_beamformer_unittest.cc",
513 "echo_cancellation_bit_exact_unittest.cc", 513 "echo_cancellation_bit_exact_unittest.cc",
514 "echo_control_mobile_unittest.cc", 514 "echo_control_mobile_unittest.cc",
515 "echo_detector/circular_buffer_unittest.cc", 515 "echo_detector/circular_buffer_unittest.cc",
516 "echo_detector/mean_variance_estimator_unittest.cc", 516 "echo_detector/mean_variance_estimator_unittest.cc",
517 "echo_detector/moving_max_unittest.cc", 517 "echo_detector/moving_max_unittest.cc",
518 "echo_detector/normalized_covariance_estimator_unittest.cc", 518 "echo_detector/normalized_covariance_estimator_unittest.cc",
519 "gain_control_unittest.cc", 519 "gain_control_unittest.cc",
520 "level_controller/level_controller_unittest.cc", 520 "level_controller/level_controller_unittest.cc",
521 "level_estimator_unittest.cc", 521 "level_estimator_unittest.cc",
522 "low_cut_filter_unittest.cc", 522 "low_cut_filter_unittest.cc",
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
718 ] 718 ]
719 719
720 deps = [ 720 deps = [
721 ":audioproc_debug_proto", 721 ":audioproc_debug_proto",
722 "../..:webrtc_common", 722 "../..:webrtc_common",
723 "../../base:rtc_base_approved", 723 "../../base:rtc_base_approved",
724 ] 724 ]
725 } 725 }
726 } 726 }
727 } 727 }
OLDNEW
« no previous file with comments | « webrtc/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698