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

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

Issue 2839963005: Revert of Creating webrtc/modules:module_api (Closed)
Patch Set: Created 3 years, 7 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/modules/audio_mixer/BUILD.gn ('k') | webrtc/modules/congestion_controller/BUILD.gn » ('j') | 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 "vad/vad_circular_buffer.h", 223 "vad/vad_circular_buffer.h",
224 "vad/voice_activity_detector.cc", 224 "vad/voice_activity_detector.cc",
225 "vad/voice_activity_detector.h", 225 "vad/voice_activity_detector.h",
226 "vad/voice_gmm_tables.h", 226 "vad/voice_gmm_tables.h",
227 "voice_detection_impl.cc", 227 "voice_detection_impl.cc",
228 "voice_detection_impl.h", 228 "voice_detection_impl.h",
229 ] 229 ]
230 230
231 defines = [] 231 defines = []
232 deps = [ 232 deps = [
233 "..:module_api",
234 "../..:webrtc_common", 233 "../..:webrtc_common",
235 "../../audio/utility:audio_frame_operations", 234 "../../audio/utility:audio_frame_operations",
236 "../../base:gtest_prod", 235 "../../base:gtest_prod",
237 "../../base:protobuf_utils", 236 "../../base:protobuf_utils",
238 "../audio_coding:isac", 237 "../audio_coding:isac",
239 ] 238 ]
240 public_deps = [ 239 public_deps = [
241 ":audio_processing_c", 240 ":audio_processing_c",
242 ] 241 ]
243 242
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 "vad/pole_zero_filter_unittest.cc", 524 "vad/pole_zero_filter_unittest.cc",
526 "vad/standalone_vad_unittest.cc", 525 "vad/standalone_vad_unittest.cc",
527 "vad/vad_audio_proc_unittest.cc", 526 "vad/vad_audio_proc_unittest.cc",
528 "vad/vad_circular_buffer_unittest.cc", 527 "vad/vad_circular_buffer_unittest.cc",
529 "vad/voice_activity_detector_unittest.cc", 528 "vad/voice_activity_detector_unittest.cc",
530 ] 529 ]
531 530
532 deps = [ 531 deps = [
533 ":audio_processing", 532 ":audio_processing",
534 ":audioproc_test_utils", 533 ":audioproc_test_utils",
535 "..:module_api",
536 "../..:webrtc_common", 534 "../..:webrtc_common",
537 "../../base:gtest_prod", 535 "../../base:gtest_prod",
538 "../../base:protobuf_utils", 536 "../../base:protobuf_utils",
539 "../../base:rtc_base", 537 "../../base:rtc_base",
540 "../../base:rtc_base_approved", 538 "../../base:rtc_base_approved",
541 "../../common_audio:common_audio", 539 "../../common_audio:common_audio",
542 "../../system_wrappers:system_wrappers", 540 "../../system_wrappers:system_wrappers",
543 "../../test:test_support", 541 "../../test:test_support",
544 "../audio_coding:neteq_unittest_tools", 542 "../audio_coding:neteq_unittest_tools",
545 "test/conversational_speech:unittest", 543 "test/conversational_speech:unittest",
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
744 "test/performance_timer.cc", 742 "test/performance_timer.cc",
745 "test/performance_timer.h", 743 "test/performance_timer.h",
746 "test/simulator_buffers.cc", 744 "test/simulator_buffers.cc",
747 "test/simulator_buffers.h", 745 "test/simulator_buffers.h",
748 "test/test_utils.cc", 746 "test/test_utils.cc",
749 "test/test_utils.h", 747 "test/test_utils.h",
750 ] 748 ]
751 749
752 deps = [ 750 deps = [
753 ":audio_processing", 751 ":audio_processing",
754 "..:module_api",
755 "../../base:rtc_base_approved", 752 "../../base:rtc_base_approved",
756 "../../common_audio", 753 "../../common_audio",
757 "../../system_wrappers:system_wrappers", 754 "../../system_wrappers:system_wrappers",
758 ] 755 ]
759 } 756 }
760 757
761 rtc_executable("transient_suppression_test") { 758 rtc_executable("transient_suppression_test") {
762 testonly = true 759 testonly = true
763 sources = [ 760 sources = [
764 "transient/file_utils.cc", 761 "transient/file_utils.cc",
765 "transient/file_utils.h", 762 "transient/file_utils.h",
766 "transient/transient_suppression_test.cc", 763 "transient/transient_suppression_test.cc",
767 ] 764 ]
768 deps = [ 765 deps = [
769 ":audio_processing", 766 ":audio_processing",
770 "..:module_api",
771 "../..:webrtc_common", 767 "../..:webrtc_common",
772 "../../common_audio:common_audio", 768 "../../common_audio:common_audio",
773 "../../system_wrappers:metrics_default", 769 "../../system_wrappers:metrics_default",
774 "../../system_wrappers:system_wrappers", 770 "../../system_wrappers:system_wrappers",
775 "../../test:test_support", 771 "../../test:test_support",
776 "//testing/gtest", 772 "//testing/gtest",
777 "//third_party/gflags", 773 "//third_party/gflags",
778 ] 774 ]
779 } 775 }
780 776
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
841 837
842 deps = [ 838 deps = [
843 ":audioproc_debug_proto", 839 ":audioproc_debug_proto",
844 "../..:webrtc_common", 840 "../..:webrtc_common",
845 "../../base:protobuf_utils", 841 "../../base:protobuf_utils",
846 "../../base:rtc_base_approved", 842 "../../base:rtc_base_approved",
847 ] 843 ]
848 } 844 }
849 } 845 }
850 } 846 }
OLDNEW
« no previous file with comments | « webrtc/modules/audio_mixer/BUILD.gn ('k') | webrtc/modules/congestion_controller/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698