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

Unified Diff: media/media.gyp

Issue 1486623004: MediaStreamRecorder: enable in Android (including linking libwebm) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Connect RendererBlinkPlatformImpl::createMediaRecorderHandler() Created 5 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 | « media/capture/webm_muxer.cc ('k') | media/media_options.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/media.gyp
diff --git a/media/media.gyp b/media/media.gyp
index 5f0fd68b76c8bd9a446bcbf38e71cd9c31545f3d..e4638021f83c748e4a78fc18f025bd271ea66aa7 100644
--- a/media/media.gyp
+++ b/media/media.gyp
@@ -58,6 +58,7 @@
'../crypto/crypto.gyp:crypto',
'../gpu/gpu.gyp:command_buffer_common',
'../skia/skia.gyp:skia',
+ '../third_party/libwebm/libwebm.gyp:libwebm',
'../third_party/libyuv/libyuv.gyp:libyuv',
'../third_party/opus/opus.gyp:opus',
'../ui/events/events.gyp:events_base',
@@ -486,6 +487,8 @@
'capture/video/win/video_capture_device_mf_win.h',
'capture/video/win/video_capture_device_win.cc',
'capture/video/win/video_capture_device_win.h',
+ 'capture/webm_muxer.cc',
+ 'capture/webm_muxer.h',
'cdm/aes_decryptor.cc',
'cdm/aes_decryptor.h',
'cdm/cdm_adapter.cc',
@@ -710,24 +713,6 @@
'filters/vpx_video_decoder.h',
],
}],
- ['media_use_libwebm==1', {
- 'dependencies': [
- '<(DEPTH)/third_party/libwebm/libwebm.gyp:libwebm',
- ],
- 'sources': [
- 'capture/webm_muxer.cc',
- 'capture/webm_muxer.h',
- ],
- }, { # media_use_libwebm==0
- 'defines': [
- 'MEDIA_DISABLE_LIBWEBM',
- ],
- 'direct_dependent_settings': {
- 'defines': [
- 'MEDIA_DISABLE_LIBWEBM',
- ],
- },
- }],
['OS=="android"', {
'dependencies': [
'media_android_jni_headers',
@@ -1187,6 +1172,7 @@
'../skia/skia.gyp:skia',
'../testing/gmock.gyp:gmock',
'../testing/gtest.gyp:gtest',
+ '../third_party/libwebm/libwebm.gyp:libwebm',
'../third_party/libyuv/libyuv.gyp:libyuv',
'../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h',
'../ui/gfx/gfx.gyp:gfx',
@@ -1268,6 +1254,7 @@
'capture/content/video_capture_oracle_unittest.cc',
'capture/video/fake_video_capture_device_unittest.cc',
'capture/video/video_capture_device_unittest.cc',
+ 'capture/webm_muxer_unittest.cc',
'cdm/aes_decryptor_unittest.cc',
'cdm/json_web_key_unittest.cc',
'ffmpeg/ffmpeg_common_unittest.cc',
@@ -1371,14 +1358,6 @@
'test/pipeline_integration_test_base.cc',
],
}],
- ['media_use_libwebm==1', {
- 'dependencies': [
- '<(DEPTH)/third_party/libwebm/libwebm.gyp:libwebm',
- ],
- 'sources': [
- 'capture/webm_muxer_unittest.cc',
- ],
- }],
['(os_posix==1 and OS!="mac") or (OS=="win" and component!="shared_library" and win_use_allocator_shim==1)', {
'conditions': [
« no previous file with comments | « media/capture/webm_muxer.cc ('k') | media/media_options.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698