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("../../webrtc.gni") | 9 import("../../webrtc.gni") |
10 import("audio_coding.gni") | 10 import("audio_coding.gni") |
(...skipping 1532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1543 config("neteq_tools_config") { | 1543 config("neteq_tools_config") { |
1544 include_dirs = [ "tools" ] | 1544 include_dirs = [ "tools" ] |
1545 } | 1545 } |
1546 | 1546 |
1547 rtc_source_set("neteq_tools") { | 1547 rtc_source_set("neteq_tools") { |
1548 sources = [ | 1548 sources = [ |
1549 "neteq/tools/fake_decode_from_file.cc", | 1549 "neteq/tools/fake_decode_from_file.cc", |
1550 "neteq/tools/fake_decode_from_file.h", | 1550 "neteq/tools/fake_decode_from_file.h", |
1551 "neteq/tools/input_audio_file.cc", | 1551 "neteq/tools/input_audio_file.cc", |
1552 "neteq/tools/input_audio_file.h", | 1552 "neteq/tools/input_audio_file.h", |
| 1553 "neteq/tools/neteq_delay_analyzer.cc", |
| 1554 "neteq/tools/neteq_delay_analyzer.h", |
1553 "neteq/tools/neteq_replacement_input.cc", | 1555 "neteq/tools/neteq_replacement_input.cc", |
1554 "neteq/tools/neteq_replacement_input.h", | 1556 "neteq/tools/neteq_replacement_input.h", |
1555 "neteq/tools/resample_input_audio_file.cc", | 1557 "neteq/tools/resample_input_audio_file.cc", |
1556 "neteq/tools/resample_input_audio_file.h", | 1558 "neteq/tools/resample_input_audio_file.h", |
1557 ] | 1559 ] |
1558 | 1560 |
1559 public_configs = [ ":neteq_tools_config" ] | 1561 public_configs = [ ":neteq_tools_config" ] |
1560 | 1562 |
1561 if (!build_with_chromium && is_clang) { | 1563 if (!build_with_chromium && is_clang) { |
1562 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 1564 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
(...skipping 668 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2231 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead. | 2233 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead. |
2232 # TODO(ossu): Remove this. | 2234 # TODO(ossu): Remove this. |
2233 rtc_source_set("builtin_audio_encoder_factory") { | 2235 rtc_source_set("builtin_audio_encoder_factory") { |
2234 sources = [ | 2236 sources = [ |
2235 "codecs/builtin_audio_encoder_factory.h", | 2237 "codecs/builtin_audio_encoder_factory.h", |
2236 ] | 2238 ] |
2237 deps = [ | 2239 deps = [ |
2238 "../../api/audio_codecs:builtin_audio_encoder_factory", | 2240 "../../api/audio_codecs:builtin_audio_encoder_factory", |
2239 ] | 2241 ] |
2240 } | 2242 } |
OLD | NEW |