OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |