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

Unified Diff: media/BUILD.gn

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 | « content/renderer/renderer_blink_platform_impl.cc ('k') | media/capture/webm_muxer.cc » ('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 eb4c38fe50eca0d4f9c52608d7c44060090a0cb7..ca58b26d929e05a58b80580063d6f58f54c13e2b 100644
--- a/media/BUILD.gn
+++ b/media/BUILD.gn
@@ -20,9 +20,6 @@ config("media_config") {
if (!media_use_ffmpeg) {
defines += [ "MEDIA_DISABLE_FFMPEG" ]
}
- if (!media_use_libwebm) {
- defines += [ "MEDIA_DISABLE_LIBWEBM" ]
- }
if (current_cpu == "arm" && arm_use_neon) {
defines += [ "USE_NEON" ]
}
@@ -52,9 +49,6 @@ config("media_dependent_config") {
if (!media_use_ffmpeg) {
defines += [ "MEDIA_DISABLE_FFMPEG" ]
}
- if (!media_use_libwebm) {
- defines += [ "MEDIA_DISABLE_LIBWEBM" ]
- }
if (is_win) {
ldflags = [
"/DELAYLOAD:mf.dll",
@@ -169,6 +163,8 @@ component("media") {
"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",
@@ -373,14 +369,6 @@ component("media") {
deps += [ "//third_party/libvpx_new" ]
}
- if (media_use_libwebm) {
- sources += [
- "capture/webm_muxer.cc",
- "capture/webm_muxer.h",
- ]
- deps += [ "//third_party/libwebm" ]
- }
-
if (is_android) {
# On Android, FFmpeg is built without video decoders. We only
# support hardware video decoding.
@@ -564,6 +552,7 @@ component("media") {
"//crypto:platform", # TODO(ajwong): This used to be provided by crypto.gyp via export_dependent_settings
"//gpu/command_buffer/common",
"//skia",
+ "//third_party/libwebm",
"//third_party/libyuv",
"//third_party/opus",
"//ui/events:events_base",
@@ -613,6 +602,7 @@ test("media_unittests") {
"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",
"filters/audio_clock_unittest.cc",
@@ -683,6 +673,7 @@ test("media_unittests") {
"//skia", # Direct dependency required to inherit config.
"//testing/gmock",
"//testing/gtest",
+ "//third_party/libwebm",
"//third_party/libyuv",
"//third_party/widevine/cdm:version_h",
"//ui/gfx:test_support",
@@ -728,11 +719,6 @@ test("media_unittests") {
}
}
- if (media_use_libwebm) {
- sources += [ "capture/webm_muxer_unittest.cc" ]
- deps += [ "//third_party/libwebm" ]
- }
-
if (current_cpu != "arm" && is_chromeos) {
sources += [ "filters/h264_bitstream_buffer_unittest.cc" ]
}
« no previous file with comments | « content/renderer/renderer_blink_platform_impl.cc ('k') | media/capture/webm_muxer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698