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 1191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1202 ] | 1202 ] |
1203 | 1203 |
1204 if (is_win) { | 1204 if (is_win) { |
1205 cflags = [ | 1205 cflags = [ |
1206 # Disable warnings to enable Win64 build, issue 1323. | 1206 # Disable warnings to enable Win64 build, issue 1323. |
1207 "/wd4267", # size_t to int truncation | 1207 "/wd4267", # size_t to int truncation |
1208 ] | 1208 ] |
1209 } | 1209 } |
1210 } | 1210 } |
1211 | 1211 |
| 1212 executable("RTPchange") { |
| 1213 testonly = true |
| 1214 |
| 1215 sources = [ |
| 1216 "neteq/test/RTPchange.cc", |
| 1217 ] |
| 1218 |
| 1219 deps = [ |
| 1220 ":neteq_test_tools", |
| 1221 ] |
| 1222 } |
| 1223 |
1212 executable("rtp_analyze") { | 1224 executable("rtp_analyze") { |
1213 testonly = true | 1225 testonly = true |
1214 | 1226 |
1215 sources = [ | 1227 sources = [ |
1216 "neteq/tools/rtp_analyze.cc", | 1228 "neteq/tools/rtp_analyze.cc", |
1217 ] | 1229 ] |
1218 | 1230 |
1219 deps = [ | 1231 deps = [ |
1220 ":neteq", | 1232 ":neteq", |
1221 ":neteq_unittest_tools", | 1233 ":neteq_unittest_tools", |
1222 ":pcm16b", | 1234 ":pcm16b", |
1223 "../../system_wrappers:system_wrappers_default", | 1235 "../../system_wrappers:system_wrappers_default", |
1224 "//testing/gtest", | 1236 "//testing/gtest", |
1225 "//third_party/gflags:gflags", | 1237 "//third_party/gflags:gflags", |
1226 ] | 1238 ] |
1227 | 1239 |
1228 if (is_clang) { | 1240 if (is_clang) { |
1229 # Suppress warnings from Chrome's Clang plugins. | 1241 # Suppress warnings from Chrome's Clang plugins. |
1230 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 1242 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
1231 configs -= [ "//build/config/clang:find_bad_constructs" ] | 1243 configs -= [ "//build/config/clang:find_bad_constructs" ] |
1232 } | 1244 } |
1233 } | 1245 } |
1234 } | 1246 } |
OLD | NEW |