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

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

Issue 2844283002: Add NetEqInput::PacketData::ToString method (Closed)
Patch Set: Created 3 years, 7 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 1093 matching lines...) Expand 10 before | Expand all | Expand 10 after
1104 # Although providing only test support, this target must be outside of the 1104 # Although providing only test support, this target must be outside of the
1105 # rtc_include_tests conditional. The reason is that it supports fuzzer tests 1105 # rtc_include_tests conditional. The reason is that it supports fuzzer tests
1106 # that ultimately are built and run as a part of the Chromium ecosystem, which 1106 # that ultimately are built and run as a part of the Chromium ecosystem, which
1107 # does not set the rtc_include_tests flag. 1107 # does not set the rtc_include_tests flag.
1108 rtc_source_set("neteq_tools_minimal") { 1108 rtc_source_set("neteq_tools_minimal") {
1109 sources = [ 1109 sources = [
1110 "neteq/tools/audio_sink.cc", 1110 "neteq/tools/audio_sink.cc",
1111 "neteq/tools/audio_sink.h", 1111 "neteq/tools/audio_sink.h",
1112 "neteq/tools/encode_neteq_input.cc", 1112 "neteq/tools/encode_neteq_input.cc",
1113 "neteq/tools/encode_neteq_input.h", 1113 "neteq/tools/encode_neteq_input.h",
1114 "neteq/tools/neteq_input.cc",
1114 "neteq/tools/neteq_input.h", 1115 "neteq/tools/neteq_input.h",
1115 "neteq/tools/neteq_test.cc", 1116 "neteq/tools/neteq_test.cc",
1116 "neteq/tools/neteq_test.h", 1117 "neteq/tools/neteq_test.h",
1117 "neteq/tools/packet.cc", 1118 "neteq/tools/packet.cc",
1118 "neteq/tools/packet.h", 1119 "neteq/tools/packet.h",
1119 "neteq/tools/packet_source.cc", 1120 "neteq/tools/packet_source.cc",
1120 "neteq/tools/packet_source.h", 1121 "neteq/tools/packet_source.h",
1121 ] 1122 ]
1122 1123
1123 if (!build_with_chromium && is_clang) { 1124 if (!build_with_chromium && is_clang) {
(...skipping 1099 matching lines...) Expand 10 before | Expand all | Expand 10 after
2223 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead. 2224 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead.
2224 # TODO(kwiberg): Remove this. 2225 # TODO(kwiberg): Remove this.
2225 rtc_source_set("builtin_audio_decoder_factory") { 2226 rtc_source_set("builtin_audio_decoder_factory") {
2226 sources = [ 2227 sources = [
2227 "codecs/builtin_audio_decoder_factory.h", 2228 "codecs/builtin_audio_decoder_factory.h",
2228 ] 2229 ]
2229 deps = [ 2230 deps = [
2230 "../../api/audio_codecs:builtin_audio_decoder_factory", 2231 "../../api/audio_codecs:builtin_audio_decoder_factory",
2231 ] 2232 ]
2232 } 2233 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698