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

Unified Diff: media/media_options.gni

Issue 1225123006: media/capture: Adding WebmMuxer class and unittests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@m_crbug262211__MSRecorder__2__libwebm_reland_in_third_party
Patch Set: Using base::StringPiece for encoded_data input Created 5 years, 5 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
« no previous file with comments | « media/media.gyp ('k') | media/media_variables.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/media_options.gni
diff --git a/media/media_options.gni b/media/media_options.gni
index cd7440a8db696cd32aaa9f652cd1646ac9063f06..a3b3a8a6a6834c269e6f301973cccb93e9433ca6 100644
--- a/media/media_options.gni
+++ b/media/media_options.gni
@@ -17,10 +17,14 @@ declare_args() {
# decoding of VP9 and VP8A type content.
media_use_libvpx = true
- # Neither Android nor iOS use ffmpeg or libvpx.
+ # Enable libwebm for multiplexing video and audio for JS recording API.
+ media_use_libwebm = true
+
+ # Neither Android nor iOS use ffmpeg, libvpx nor libwebm.
if (is_android || is_ios) {
media_use_ffmpeg = false
media_use_libvpx = false
+ media_use_libwebm = false
}
# Override to dynamically link the cras (ChromeOS audio) library.
« no previous file with comments | « media/media.gyp ('k') | media/media_variables.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698