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

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

Issue 2178353002: GN migration of target audio_coding/neteq/neteq_test_tools (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 4 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 | 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/webrtc.gni") 9 import("../../build/webrtc.gni")
10 import("audio_coding.gni") 10 import("audio_coding.gni")
(...skipping 1066 matching lines...) Expand 10 before | Expand all | Expand 10 after
1077 deps = [ 1077 deps = [
1078 "../../common_audio", 1078 "../../common_audio",
1079 "../../test:rtp_test_utils", 1079 "../../test:rtp_test_utils",
1080 "../rtp_rtcp", 1080 "../rtp_rtcp",
1081 ] 1081 ]
1082 1082
1083 if (rtc_enable_protobuf) { 1083 if (rtc_enable_protobuf) {
1084 deps += [ ":rtc_event_log_source" ] 1084 deps += [ ":rtc_event_log_source" ]
1085 } 1085 }
1086 } 1086 }
1087
1088 source_set("neteq_test_tools") {
1089 testonly = true
1090 sources = [
1091 "neteq/test/NETEQTEST_DummyRTPpacket.cc",
1092 "neteq/test/NETEQTEST_DummyRTPpacket.h",
1093 "neteq/test/NETEQTEST_RTPpacket.cc",
1094 "neteq/test/NETEQTEST_RTPpacket.h",
1095 ]
1096
1097 deps = [
1098 ":cng",
1099 ":g711",
1100 ":g722",
1101 ":ilbc",
1102 ":isac",
1103 ":pcm16b",
1104 "../..:webrtc_common",
1105 "//testing/gtest",
1106 ]
1107
1108 include_dirs = [
1109 "neteq/include",
1110 "neteq/test",
1111 "../../",
1112 ]
1113
1114 if (is_win) {
1115 cflags = [
1116 # Disable warnings to enable Win64 build, issue 1323.
1117 "/wd4267", # size_t to int truncation
1118 ]
1119 }
1120 }
1087 } 1121 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698