| 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 867 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 878 "../..:webrtc_common", | 878 "../..:webrtc_common", |
| 879 "../../rtc_base:rtc_base_approved", | 879 "../../rtc_base:rtc_base_approved", |
| 880 ] | 880 ] |
| 881 } | 881 } |
| 882 | 882 |
| 883 if (rtc_enable_protobuf) { | 883 if (rtc_enable_protobuf) { |
| 884 proto_library("ana_debug_dump_proto") { | 884 proto_library("ana_debug_dump_proto") { |
| 885 sources = [ | 885 sources = [ |
| 886 "audio_network_adaptor/debug_dump.proto", | 886 "audio_network_adaptor/debug_dump.proto", |
| 887 ] | 887 ] |
| 888 deps = [ |
| 889 ":ana_config_proto", |
| 890 ] |
| 888 proto_out_dir = "webrtc/modules/audio_coding/audio_network_adaptor" | 891 proto_out_dir = "webrtc/modules/audio_coding/audio_network_adaptor" |
| 889 } | 892 } |
| 890 proto_library("ana_config_proto") { | 893 proto_library("ana_config_proto") { |
| 891 sources = [ | 894 sources = [ |
| 892 "audio_network_adaptor/config.proto", | 895 "audio_network_adaptor/config.proto", |
| 893 ] | 896 ] |
| 894 proto_out_dir = "webrtc/modules/audio_coding/audio_network_adaptor" | 897 proto_out_dir = "webrtc/modules/audio_coding/audio_network_adaptor" |
| 895 } | 898 } |
| 896 } | 899 } |
| 897 | 900 |
| (...skipping 1342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2240 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead. | 2243 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead. |
| 2241 # TODO(ossu): Remove this. | 2244 # TODO(ossu): Remove this. |
| 2242 rtc_source_set("builtin_audio_encoder_factory") { | 2245 rtc_source_set("builtin_audio_encoder_factory") { |
| 2243 sources = [ | 2246 sources = [ |
| 2244 "codecs/builtin_audio_encoder_factory.h", | 2247 "codecs/builtin_audio_encoder_factory.h", |
| 2245 ] | 2248 ] |
| 2246 deps = [ | 2249 deps = [ |
| 2247 "../../api/audio_codecs:builtin_audio_encoder_factory", | 2250 "../../api/audio_codecs:builtin_audio_encoder_factory", |
| 2248 ] | 2251 ] |
| 2249 } | 2252 } |
| OLD | NEW |