Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(107)

Side by Side Diff: webrtc/modules/audio_coding/BUILD.gn

Issue 2347843002: Add proper lifetime of encoder-specific settings (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1269 matching lines...) Expand 10 before | Expand all | Expand 10 after
1280 deps = [ 1280 deps = [
1281 ":neteq_test_tools", 1281 ":neteq_test_tools",
1282 "//testing/gtest", 1282 "//testing/gtest",
1283 ] 1283 ]
1284 } 1284 }
1285 1285
1286 rtc_executable("RTPjitter") { 1286 rtc_executable("RTPjitter") {
1287 testonly = true 1287 testonly = true
1288 deps = [ 1288 deps = [
1289 "../..:webrtc_common", 1289 "../..:webrtc_common",
1290 "../../base:rtc_base_approved",
pbos-webrtc 2016/09/16 18:52:35 Is this related?
1290 "//testing/gtest", 1291 "//testing/gtest",
1291 ] 1292 ]
1292 sources = [ 1293 sources = [
1293 "neteq/test/RTPjitter.cc", 1294 "neteq/test/RTPjitter.cc",
1294 ] 1295 ]
1295 } 1296 }
1296 1297
1297 rtc_executable("rtp_analyze") { 1298 rtc_executable("rtp_analyze") {
1298 testonly = true 1299 testonly = true
1299 1300
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
1561 "//testing/gtest", 1562 "//testing/gtest",
1562 ] 1563 ]
1563 1564
1564 if (is_clang) { 1565 if (is_clang) {
1565 # Suppress warnings from Chrome's Clang plugins. 1566 # Suppress warnings from Chrome's Clang plugins.
1566 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 1567 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
1567 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 1568 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
1568 } 1569 }
1569 } 1570 }
1570 } 1571 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698