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

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

Issue 2187003002: Migrated GN target insert_packet_with_timing. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@delay_test
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 950 matching lines...) Expand 10 before | Expand all | Expand 10 after
961 "../../:webrtc_common", 961 "../../:webrtc_common",
962 "../../system_wrappers", 962 "../../system_wrappers",
963 "../../system_wrappers:system_wrappers_default", 963 "../../system_wrappers:system_wrappers_default",
964 "../../test:test_support", 964 "../../test:test_support",
965 "../rtp_rtcp", 965 "../rtp_rtcp",
966 "//testing/gtest", 966 "//testing/gtest",
967 "//third_party/gflags:gflags", 967 "//third_party/gflags:gflags",
968 ] 968 ]
969 } # delay_test 969 } # delay_test
970 970
971 executable("insert_packet_with_timing") {
972 testonly = true
973 sources = [
974 "test/Channel.cc",
975 "test/PCMFile.cc",
976 "test/insert_packet_with_timing.cc",
977 ]
978
979 configs += [ "../..:common_config" ]
980 public_configs = [ "../..:common_inherited_config" ]
981
982 if (is_clang) {
983 # Suppress warnings from Chrome's Clang plugins.
984 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
985 configs -= [ "//build/config/clang:find_bad_constructs" ]
986 }
987
988 deps = [
989 ":audio_coding",
990 "../../:webrtc_common",
991 "../../system_wrappers",
992 "../../system_wrappers:system_wrappers_default",
993 "../../test:test_support",
994 "../rtp_rtcp",
995 "//testing/gtest",
996 "//third_party/gflags:gflags",
997 ]
998 } # insert_packet_with_timing
999
971 if (rtc_enable_protobuf) { 1000 if (rtc_enable_protobuf) {
972 proto_library("neteq_unittest_proto") { 1001 proto_library("neteq_unittest_proto") {
973 sources = [ 1002 sources = [
974 "neteq/neteq_unittest.proto", 1003 "neteq/neteq_unittest.proto",
975 ] 1004 ]
976 proto_out_dir = "webrtc/audio_coding/neteq" 1005 proto_out_dir = "webrtc/audio_coding/neteq"
977 } 1006 }
978 1007
979 source_set("rtc_event_log_source") { 1008 source_set("rtc_event_log_source") {
980 testonly = true 1009 testonly = true
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
1165 "//third_party/gflags:gflags", 1194 "//third_party/gflags:gflags",
1166 ] 1195 ]
1167 1196
1168 if (is_clang) { 1197 if (is_clang) {
1169 # Suppress warnings from Chrome's Clang plugins. 1198 # Suppress warnings from Chrome's Clang plugins.
1170 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 1199 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
1171 configs -= [ "//build/config/clang:find_bad_constructs" ] 1200 configs -= [ "//build/config/clang:find_bad_constructs" ]
1172 } 1201 }
1173 } 1202 }
1174 } 1203 }
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