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

Unified Diff: webrtc/modules/audio_coding/BUILD.gn

Issue 1917163002: New interface (AudioDecoderFactory), with an implementation (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_coding/BUILD.gn
diff --git a/webrtc/modules/audio_coding/BUILD.gn b/webrtc/modules/audio_coding/BUILD.gn
index 99fa140da3e8e01137e51d63e9bd4f232ac2b9de..33ba2a952a21dae4e04d70935499e51ef7bfa457 100644
--- a/webrtc/modules/audio_coding/BUILD.gn
+++ b/webrtc/modules/audio_coding/BUILD.gn
@@ -39,6 +39,33 @@ if (!build_with_mozilla && !build_with_chromium) {
audio_codec_deps += [ ":red" ]
}
+source_set("audio_codec_factory_interfaces") {
+ sources = [
+ "codecs/audio_decoder_factory.h",
+ "codecs/audio_format.cc",
+ "codecs/audio_format.h",
+ ]
+ configs += [ "../..:common_config" ]
+ public_configs = [ "../..:common_inherited_config" ]
+ deps = [
+ "../..:webrtc_common",
+ ]
+}
+
+source_set("builtin_audio_codec_factory") {
the sun 2016/04/27 20:34:14 _factories? Or is the intent to have a single cla
kwiberg-webrtc 2016/04/28 12:35:51 Changed this to "builtin_audio_decoder_factory" fo
+ sources = [
+ "codecs/builtin_audio_decoder_factory.cc",
+ "codecs/builtin_audio_decoder_factory.h",
+ ]
+ configs += [ "../..:common_config" ]
+ public_configs = [ "../..:common_inherited_config" ]
+ deps = [
+ "../..:webrtc_common",
+ ":audio_codec_factory_interfaces",
+ ] + audio_codec_deps
+ defines = audio_codec_defines
+}
+
source_set("rent_a_codec") {
sources = [
"acm2/acm_codec_database.cc",
« no previous file with comments | « no previous file | webrtc/modules/audio_coding/audio_coding.gypi » ('j') | webrtc/modules/audio_coding/audio_coding.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698