Chromium Code Reviews| 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("rtp_to_text") { | |
|
aleloi
2016/08/01 15:26:33
This seems unused or deprecated. There is a 'retur
kjellander_webrtc
2016/08/01 19:03:43
Let's see what Henrik L has to say. I believe he a
| |
| 1213 testonly = true | |
| 1214 | |
| 1215 sources = [ | |
| 1216 "neteq/test/rtp_to_text.cc", | |
| 1217 ] | |
| 1218 | |
| 1219 deps = [ | |
| 1220 ":neteq_test_tools", | |
| 1221 "../../system_wrappers", | |
| 1222 ] | |
| 1223 } | |
| 1224 | |
| 1212 executable("rtp_analyze") { | 1225 executable("rtp_analyze") { |
| 1213 testonly = true | 1226 testonly = true |
| 1214 | 1227 |
| 1215 sources = [ | 1228 sources = [ |
| 1216 "neteq/tools/rtp_analyze.cc", | 1229 "neteq/tools/rtp_analyze.cc", |
| 1217 ] | 1230 ] |
| 1218 | 1231 |
| 1219 deps = [ | 1232 deps = [ |
| 1220 ":neteq", | 1233 ":neteq", |
| 1221 ":neteq_unittest_tools", | 1234 ":neteq_unittest_tools", |
| 1222 ":pcm16b", | 1235 ":pcm16b", |
| 1223 "../../system_wrappers:system_wrappers_default", | 1236 "../../system_wrappers:system_wrappers_default", |
| 1224 "//testing/gtest", | 1237 "//testing/gtest", |
| 1225 "//third_party/gflags:gflags", | 1238 "//third_party/gflags:gflags", |
| 1226 ] | 1239 ] |
| 1227 | 1240 |
| 1228 if (is_clang) { | 1241 if (is_clang) { |
| 1229 # Suppress warnings from Chrome's Clang plugins. | 1242 # Suppress warnings from Chrome's Clang plugins. |
| 1230 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 1243 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 1231 configs -= [ "//build/config/clang:find_bad_constructs" ] | 1244 configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 1232 } | 1245 } |
| 1233 } | 1246 } |
| 1234 } | 1247 } |
| OLD | NEW |