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

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

Issue 2020363003: Refactor neteq_rtpplay (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fixing win compilation and gyp dependencies Created 4 years, 6 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 | « no previous file | webrtc/modules/audio_coding/neteq/neteq.gypi » ('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/webrtc.gni") 9 import("../../build/webrtc.gni")
10 import("audio_coding.gni") 10 import("audio_coding.gni")
(...skipping 973 matching lines...) Expand 10 before | Expand all | Expand 10 after
984 if (is_win) { 984 if (is_win) {
985 cflags = [ 985 cflags = [
986 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. 986 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning.
987 "/wd4373", # virtual function override. 987 "/wd4373", # virtual function override.
988 ] 988 ]
989 } 989 }
990 990
991 deps += [ 991 deps += [
992 ":neteq", 992 ":neteq",
993 ":neteq_unittest_tools", 993 ":neteq_unittest_tools",
994 ":rtc_event_log_source",
995 "../../system_wrappers:system_wrappers_default", 994 "../../system_wrappers:system_wrappers_default",
996 "../../test:test_support", 995 "../../test:test_support",
997 "//third_party/gflags", 996 "//third_party/gflags",
998 ] 997 ]
999 } 998 }
1000 } 999 }
1001 1000
1002 source_set("neteq_test_support") { 1001 source_set("neteq_test_support") {
1003 testonly = true 1002 testonly = true
1004 sources = [ 1003 sources = [
(...skipping 28 matching lines...) Expand all
1033 1032
1034 source_set("neteq_unittest_tools") { 1033 source_set("neteq_unittest_tools") {
1035 testonly = true 1034 testonly = true
1036 sources = [ 1035 sources = [
1037 "neteq/tools/audio_checksum.h", 1036 "neteq/tools/audio_checksum.h",
1038 "neteq/tools/audio_loop.cc", 1037 "neteq/tools/audio_loop.cc",
1039 "neteq/tools/audio_loop.h", 1038 "neteq/tools/audio_loop.h",
1040 "neteq/tools/audio_sink.h", 1039 "neteq/tools/audio_sink.h",
1041 "neteq/tools/constant_pcm_packet_source.cc", 1040 "neteq/tools/constant_pcm_packet_source.cc",
1042 "neteq/tools/constant_pcm_packet_source.h", 1041 "neteq/tools/constant_pcm_packet_source.h",
1042 "neteq/tools/fake_decode_from_file.cc",
1043 "neteq/tools/fake_decode_from_file.h",
1043 "neteq/tools/input_audio_file.cc", 1044 "neteq/tools/input_audio_file.cc",
1044 "neteq/tools/input_audio_file.h", 1045 "neteq/tools/input_audio_file.h",
1046 "neteq/tools/neteq_input.h",
1047 "neteq/tools/neteq_packet_source_input.cc",
1048 "neteq/tools/neteq_packet_source_input.h",
1049 "neteq/tools/neteq_replacement_input.cc",
1050 "neteq/tools/neteq_replacement_input.h",
1051 "neteq/tools/neteq_test.cc",
1052 "neteq/tools/neteq_test.h",
1045 "neteq/tools/output_audio_file.h", 1053 "neteq/tools/output_audio_file.h",
1046 "neteq/tools/output_wav_file.h", 1054 "neteq/tools/output_wav_file.h",
1047 "neteq/tools/packet.cc", 1055 "neteq/tools/packet.cc",
1048 "neteq/tools/packet.h", 1056 "neteq/tools/packet.h",
1049 "neteq/tools/packet_source.h", 1057 "neteq/tools/packet_source.h",
1050 "neteq/tools/resample_input_audio_file.cc", 1058 "neteq/tools/resample_input_audio_file.cc",
1051 "neteq/tools/resample_input_audio_file.h", 1059 "neteq/tools/resample_input_audio_file.h",
1052 "neteq/tools/rtp_file_source.cc", 1060 "neteq/tools/rtp_file_source.cc",
1053 "neteq/tools/rtp_file_source.h", 1061 "neteq/tools/rtp_file_source.h",
1054 "neteq/tools/rtp_generator.cc", 1062 "neteq/tools/rtp_generator.cc",
1055 "neteq/tools/rtp_generator.h", 1063 "neteq/tools/rtp_generator.h",
1056 ] 1064 ]
1057 1065
1058 configs += [ "../..:common_config" ] 1066 configs += [ "../..:common_config" ]
1059 public_configs = [ 1067 public_configs = [
1060 "../..:common_inherited_config", 1068 "../..:common_inherited_config",
1061 ":neteq_unittest_tools_config", 1069 ":neteq_unittest_tools_config",
1062 ] 1070 ]
1063 1071
1064 if (is_clang) { 1072 if (is_clang) {
1065 # Suppress warnings from the Chromium Clang plugins (bugs.webrtc.org/163). 1073 # Suppress warnings from the Chromium Clang plugins (bugs.webrtc.org/163).
1066 configs -= [ "//build/config/clang:find_bad_constructs" ] 1074 configs -= [ "//build/config/clang:find_bad_constructs" ]
1067 } 1075 }
1068 1076
1069 deps = [ 1077 deps = [
1070 "../../common_audio", 1078 "../../common_audio",
1071 "../../test:rtp_test_utils", 1079 "../../test:rtp_test_utils",
1072 "../rtp_rtcp", 1080 "../rtp_rtcp",
1073 ] 1081 ]
1082
1083 if (rtc_enable_protobuf) {
1084 deps += [ ":rtc_event_log_source" ]
1085 }
1074 } 1086 }
1075 } 1087 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_coding/neteq/neteq.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698