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 920 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
931 | 931 |
932 defines = audio_coding_defines | 932 defines = audio_coding_defines |
933 | 933 |
934 deps = audio_coding_deps + [ | 934 deps = audio_coding_deps + [ |
935 ":audio_coding", | 935 ":audio_coding", |
936 ":neteq_unittest_tools", | 936 ":neteq_unittest_tools", |
937 "//testing/gtest", | 937 "//testing/gtest", |
938 ] | 938 ] |
939 } | 939 } |
940 | 940 |
| 941 executable("delay_test") { |
| 942 testonly = true |
| 943 sources = [ |
| 944 "test/Channel.cc", |
| 945 "test/PCMFile.cc", |
| 946 "test/delay_test.cc", |
| 947 "test/utility.cc", |
| 948 ] |
| 949 |
| 950 configs += [ "../..:common_config" ] |
| 951 public_configs = [ "../..:common_inherited_config" ] |
| 952 |
| 953 if (is_clang) { |
| 954 # Suppress warnings from Chrome's Clang plugins. |
| 955 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 956 configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 957 } |
| 958 |
| 959 deps = [ |
| 960 ":audio_coding", |
| 961 "../../:webrtc_common", |
| 962 "../../system_wrappers", |
| 963 "../../system_wrappers:system_wrappers_default", |
| 964 "../../test:test_support", |
| 965 "../rtp_rtcp", |
| 966 "//testing/gtest", |
| 967 "//third_party/gflags:gflags", |
| 968 ] |
| 969 } # delay_test |
| 970 |
941 if (rtc_enable_protobuf) { | 971 if (rtc_enable_protobuf) { |
942 proto_library("neteq_unittest_proto") { | 972 proto_library("neteq_unittest_proto") { |
943 sources = [ | 973 sources = [ |
944 "neteq/neteq_unittest.proto", | 974 "neteq/neteq_unittest.proto", |
945 ] | 975 ] |
946 proto_out_dir = "webrtc/audio_coding/neteq" | 976 proto_out_dir = "webrtc/audio_coding/neteq" |
947 } | 977 } |
948 | 978 |
949 source_set("rtc_event_log_source") { | 979 source_set("rtc_event_log_source") { |
950 testonly = true | 980 testonly = true |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1135 "//third_party/gflags:gflags", | 1165 "//third_party/gflags:gflags", |
1136 ] | 1166 ] |
1137 | 1167 |
1138 if (is_clang) { | 1168 if (is_clang) { |
1139 # Suppress warnings from Chrome's Clang plugins. | 1169 # Suppress warnings from Chrome's Clang plugins. |
1140 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 1170 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
1141 configs -= [ "//build/config/clang:find_bad_constructs" ] | 1171 configs -= [ "//build/config/clang:find_bad_constructs" ] |
1142 } | 1172 } |
1143 } | 1173 } |
1144 } | 1174 } |
OLD | NEW |