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 1326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1337 sources = [ | 1337 sources = [ |
1338 "neteq/test/RTPtimeshift.cc", | 1338 "neteq/test/RTPtimeshift.cc", |
1339 ] | 1339 ] |
1340 | 1340 |
1341 deps = [ | 1341 deps = [ |
1342 ":neteq_test_tools", | 1342 ":neteq_test_tools", |
1343 "//testing/gtest", | 1343 "//testing/gtest", |
1344 ] | 1344 ] |
1345 } | 1345 } |
1346 | 1346 |
| 1347 executable("RTPjitter") { |
| 1348 testonly = true |
| 1349 deps = [ |
| 1350 "../..:webrtc_common", |
| 1351 "//testing/gtest", |
| 1352 ] |
| 1353 sources = [ |
| 1354 "neteq/test/RTPjitter.cc", |
| 1355 ] |
| 1356 } |
| 1357 |
1347 executable("rtp_analyze") { | 1358 executable("rtp_analyze") { |
1348 testonly = true | 1359 testonly = true |
1349 | 1360 |
1350 sources = [ | 1361 sources = [ |
1351 "neteq/tools/rtp_analyze.cc", | 1362 "neteq/tools/rtp_analyze.cc", |
1352 ] | 1363 ] |
1353 | 1364 |
1354 deps = [ | 1365 deps = [ |
1355 ":neteq", | 1366 ":neteq", |
1356 ":neteq_unittest_tools", | 1367 ":neteq_unittest_tools", |
1357 ":pcm16b", | 1368 ":pcm16b", |
1358 "../../system_wrappers:system_wrappers_default", | 1369 "../../system_wrappers:system_wrappers_default", |
1359 "//testing/gtest", | 1370 "//testing/gtest", |
1360 "//third_party/gflags:gflags", | 1371 "//third_party/gflags:gflags", |
1361 ] | 1372 ] |
1362 | 1373 |
1363 if (is_clang) { | 1374 if (is_clang) { |
1364 # Suppress warnings from Chrome's Clang plugins. | 1375 # Suppress warnings from Chrome's Clang plugins. |
1365 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 1376 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
1366 configs -= [ "//build/config/clang:find_bad_constructs" ] | 1377 configs -= [ "//build/config/clang:find_bad_constructs" ] |
1367 } | 1378 } |
1368 } | 1379 } |
1369 } | 1380 } |
OLD | NEW |