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

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

Issue 2876423002: Add NetEq delay plotting to event_log_visualizer (Closed)
Patch Set: After terilius's review Created 3 years, 6 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("../../webrtc.gni") 9 import("../../webrtc.gni")
10 import("audio_coding.gni") 10 import("audio_coding.gni")
(...skipping 1534 matching lines...) Expand 10 before | Expand all | Expand 10 after
1545 config("neteq_tools_config") { 1545 config("neteq_tools_config") {
1546 include_dirs = [ "tools" ] 1546 include_dirs = [ "tools" ]
1547 } 1547 }
1548 1548
1549 rtc_source_set("neteq_tools") { 1549 rtc_source_set("neteq_tools") {
1550 sources = [ 1550 sources = [
1551 "neteq/tools/fake_decode_from_file.cc", 1551 "neteq/tools/fake_decode_from_file.cc",
1552 "neteq/tools/fake_decode_from_file.h", 1552 "neteq/tools/fake_decode_from_file.h",
1553 "neteq/tools/input_audio_file.cc", 1553 "neteq/tools/input_audio_file.cc",
1554 "neteq/tools/input_audio_file.h", 1554 "neteq/tools/input_audio_file.h",
1555 "neteq/tools/neteq_delay_analyzer.cc",
1556 "neteq/tools/neteq_delay_analyzer.h",
1555 "neteq/tools/neteq_replacement_input.cc", 1557 "neteq/tools/neteq_replacement_input.cc",
1556 "neteq/tools/neteq_replacement_input.h", 1558 "neteq/tools/neteq_replacement_input.h",
1557 "neteq/tools/resample_input_audio_file.cc", 1559 "neteq/tools/resample_input_audio_file.cc",
1558 "neteq/tools/resample_input_audio_file.h", 1560 "neteq/tools/resample_input_audio_file.h",
1559 ] 1561 ]
1560 1562
1561 public_configs = [ ":neteq_tools_config" ] 1563 public_configs = [ ":neteq_tools_config" ]
1562 1564
1563 if (!build_with_chromium && is_clang) { 1565 if (!build_with_chromium && is_clang) {
1564 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 1566 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
(...skipping 668 matching lines...) Expand 10 before | Expand all | Expand 10 after
2233 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead. 2235 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead.
2234 # TODO(ossu): Remove this. 2236 # TODO(ossu): Remove this.
2235 rtc_source_set("builtin_audio_encoder_factory") { 2237 rtc_source_set("builtin_audio_encoder_factory") {
2236 sources = [ 2238 sources = [
2237 "codecs/builtin_audio_encoder_factory.h", 2239 "codecs/builtin_audio_encoder_factory.h",
2238 ] 2240 ]
2239 deps = [ 2241 deps = [
2240 "../../api/audio_codecs:builtin_audio_encoder_factory", 2242 "../../api/audio_codecs:builtin_audio_encoder_factory",
2241 ] 2243 ]
2242 } 2244 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698