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

Unified Diff: media/BUILD.gn

Issue 2543633006: To M56: Use ffmpeg for opus decoding, no need to maintain our decoder. (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « content/test/BUILD.gn ('k') | media/base/audio_discard_helper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/BUILD.gn
diff --git a/media/BUILD.gn b/media/BUILD.gn
index 9a6869259dbc7fee47b69220245d0c8eac13c0c8..652aad4d9baef31f1636a94f16eef13a57b36a94 100644
--- a/media/BUILD.gn
+++ b/media/BUILD.gn
@@ -162,8 +162,6 @@ component("media") {
"filters/jpeg_parser.h",
"filters/memory_data_source.cc",
"filters/memory_data_source.h",
- "filters/opus_audio_decoder.cc",
- "filters/opus_audio_decoder.h",
"filters/opus_constants.cc",
"filters/opus_constants.h",
"filters/pipeline_controller.cc",
@@ -283,7 +281,10 @@ component("media") {
include_dirs = [ "." ]
if (media_use_ffmpeg) {
public_deps += [ "//media/ffmpeg" ]
- deps += [ "//third_party/ffmpeg" ]
+ deps += [
+ "//third_party/ffmpeg",
+ "//third_party/opus",
+ ]
sources += [
"filters/audio_file_reader.cc",
"filters/audio_file_reader.h",
@@ -486,7 +487,6 @@ component("media") {
":shared_memory_support",
"//media/audio",
"//media/base",
- "//third_party/opus",
]
deps += [
« no previous file with comments | « content/test/BUILD.gn ('k') | media/base/audio_discard_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698