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

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

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

Powered by Google App Engine
This is Rietveld 408576698