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 1299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1310 | 1310 |
1311 sources = [ | 1311 sources = [ |
1312 "neteq/test/RTPchange.cc", | 1312 "neteq/test/RTPchange.cc", |
1313 ] | 1313 ] |
1314 | 1314 |
1315 deps = [ | 1315 deps = [ |
1316 ":neteq_test_tools", | 1316 ":neteq_test_tools", |
1317 ] | 1317 ] |
1318 } | 1318 } |
1319 | 1319 |
| 1320 executable("rtpcat") { |
| 1321 testonly = true |
| 1322 |
| 1323 sources = [ |
| 1324 "neteq/tools/rtpcat.cc", |
| 1325 ] |
| 1326 |
| 1327 deps = [ |
| 1328 "../../system_wrappers:system_wrappers_default", |
| 1329 "../../test:rtp_test_utils", |
| 1330 "//testing/gtest", |
| 1331 ] |
| 1332 } |
| 1333 |
1320 executable("rtp_analyze") { | 1334 executable("rtp_analyze") { |
1321 testonly = true | 1335 testonly = true |
1322 | 1336 |
1323 sources = [ | 1337 sources = [ |
1324 "neteq/tools/rtp_analyze.cc", | 1338 "neteq/tools/rtp_analyze.cc", |
1325 ] | 1339 ] |
1326 | 1340 |
1327 deps = [ | 1341 deps = [ |
1328 ":neteq", | 1342 ":neteq", |
1329 ":neteq_unittest_tools", | 1343 ":neteq_unittest_tools", |
1330 ":pcm16b", | 1344 ":pcm16b", |
1331 "../../system_wrappers:system_wrappers_default", | 1345 "../../system_wrappers:system_wrappers_default", |
1332 "//testing/gtest", | 1346 "//testing/gtest", |
1333 "//third_party/gflags:gflags", | 1347 "//third_party/gflags:gflags", |
1334 ] | 1348 ] |
1335 | 1349 |
1336 if (is_clang) { | 1350 if (is_clang) { |
1337 # Suppress warnings from Chrome's Clang plugins. | 1351 # Suppress warnings from Chrome's Clang plugins. |
1338 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 1352 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
1339 configs -= [ "//build/config/clang:find_bad_constructs" ] | 1353 configs -= [ "//build/config/clang:find_bad_constructs" ] |
1340 } | 1354 } |
1341 } | 1355 } |
1342 } | 1356 } |
OLD | NEW |