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

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

Issue 2976363002: Decoupling rtc_base from apple specific code [without cyclic deps] (Closed)
Patch Set: fixing network_tester_server Created 3 years, 5 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 739 matching lines...) Expand 10 before | Expand all | Expand 10 after
750 "../../base:rtc_task_queue", 750 "../../base:rtc_task_queue",
751 "../../common_audio:common_audio", 751 "../../common_audio:common_audio",
752 "../../system_wrappers", 752 "../../system_wrappers",
753 "../../system_wrappers:system_wrappers_default", 753 "../../system_wrappers:system_wrappers_default",
754 "../../test:test_support", 754 "../../test:test_support",
755 "aec_dump", 755 "aec_dump",
756 "aec_dump:aec_dump_impl", 756 "aec_dump:aec_dump_impl",
757 "//testing/gtest", 757 "//testing/gtest",
758 "//third_party/gflags:gflags", 758 "//third_party/gflags:gflags",
759 ] 759 ]
760 if (is_ios) {
761 deps += [ "../../rtc_base:rtc_base_apple" ]
762 }
760 } # audioproc_f 763 } # audioproc_f
761 } 764 }
762 765
763 rtc_source_set("audioproc_test_utils") { 766 rtc_source_set("audioproc_test_utils") {
764 testonly = true 767 testonly = true
765 sources = [ 768 sources = [
766 "test/audio_buffer_tools.cc", 769 "test/audio_buffer_tools.cc",
767 "test/audio_buffer_tools.h", 770 "test/audio_buffer_tools.h",
768 "test/performance_timer.cc", 771 "test/performance_timer.cc",
769 "test/performance_timer.h", 772 "test/performance_timer.h",
(...skipping 23 matching lines...) Expand all
793 ":audio_processing", 796 ":audio_processing",
794 "..:module_api", 797 "..:module_api",
795 "../..:webrtc_common", 798 "../..:webrtc_common",
796 "../../common_audio:common_audio", 799 "../../common_audio:common_audio",
797 "../../system_wrappers:metrics_default", 800 "../../system_wrappers:metrics_default",
798 "../../system_wrappers:system_wrappers", 801 "../../system_wrappers:system_wrappers",
799 "../../test:test_support", 802 "../../test:test_support",
800 "//testing/gtest", 803 "//testing/gtest",
801 "//third_party/gflags", 804 "//third_party/gflags",
802 ] 805 ]
806 if (is_ios) {
807 deps += [ "../../rtc_base:rtc_base_apple" ]
808 }
803 } 809 }
804 810
805 rtc_executable("click_annotate") { 811 rtc_executable("click_annotate") {
806 testonly = true 812 testonly = true
807 sources = [ 813 sources = [
808 "transient/click_annotate.cc", 814 "transient/click_annotate.cc",
809 "transient/file_utils.cc", 815 "transient/file_utils.cc",
810 "transient/file_utils.h", 816 "transient/file_utils.h",
811 ] 817 ]
812 deps = [ 818 deps = [
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
865 871
866 deps = [ 872 deps = [
867 ":audioproc_debug_proto", 873 ":audioproc_debug_proto",
868 "../..:webrtc_common", 874 "../..:webrtc_common",
869 "../../base:protobuf_utils", 875 "../../base:protobuf_utils",
870 "../../base:rtc_base_approved", 876 "../../base:rtc_base_approved",
871 ] 877 ]
872 } 878 }
873 } 879 }
874 } 880 }
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/BUILD.gn ('k') | webrtc/modules/audio_processing/test/conversational_speech/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698