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

Unified Diff: media/media.gyp

Issue 269673005: media: Add MediaOzonePlatform support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix up dependency cycle Created 6 years, 7 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: media/media.gyp
diff --git a/media/media.gyp b/media/media.gyp
index 3e215b1aaace9bbb68c51be369e1df648200563c..fec309aadd656d9b8048e158aeb9f92edca34287 100644
--- a/media/media.gyp
+++ b/media/media.gyp
@@ -48,6 +48,21 @@
],
'targets': [
{
+ 'target_name': 'media_types',
+ 'type': '<(component)',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ ],
+ 'defines': [
+ 'MEDIA_TYPES_IMPLEMENTATION',
+ ],
+ 'sources': [
+ 'types/video_decode_accelerator_impl.cc',
+ 'types/video_decode_accelerator_impl.h',
+ 'types/media_types_export.h',
+ ],
+ },
+ {
'target_name': 'media',
'type': '<(component)',
'dependencies': [
@@ -63,6 +78,7 @@
'../ui/gfx/gfx.gyp:gfx_geometry',
'../url/url.gyp:url_lib',
'shared_memory_support',
+ 'media_types',
],
'defines': [
'MEDIA_IMPLEMENTATION',

Powered by Google App Engine
This is Rietveld 408576698