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

Unified Diff: chromecast/chromecast.gyp

Issue 1257013003: Load CMA backend from shared library (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 4 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: chromecast/chromecast.gyp
diff --git a/chromecast/chromecast.gyp b/chromecast/chromecast.gyp
index 1b0f65d35f052b61e43811f2dd07463a4ee94c10..227c9bd3643c76932890a4d145df9a6a663f80ad 100644
--- a/chromecast/chromecast.gyp
+++ b/chromecast/chromecast.gyp
@@ -43,13 +43,30 @@
'public/chromecast_export.h',
'public/graphics_properties_shlib.h',
'public/graphics_types.h',
+ 'public/media_codec_support.h',
+ 'public/media/audio_pipeline_device.h',
+ 'public/media/cast_decoder_buffer.h',
+ 'public/media/cast_decrypt_config.h',
+ 'public/media/cast_key_system.h',
'public/media/decoder_config.h',
+ 'public/media/decrypt_context.h',
+ 'public/media/media_clock_device.h',
+ 'public/media/media_component_device.h',
+ 'public/media/media_pipeline_backend.h',
+ 'public/media/media_pipeline_device_params.h',
'public/media/stream_id.h',
+ 'public/media/video_pipeline_device.h',
'public/osd_plane.h',
'public/osd_plane_shlib.h',
'public/osd_surface.h',
+ 'public/task_runner.h',
'public/video_plane.h',
],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ 'public/',
+ ],
+ },
},
{
'target_name': 'cast_base',
@@ -76,7 +93,9 @@
'base/process_utils.cc',
'base/process_utils.h',
'base/serializers.cc',
- 'base/serializers.h'
+ 'base/serializers.h',
+ 'base/task_runner_impl.cc',
+ 'base/task_runner_impl.h',
],
'conditions': [
['OS=="android"', {
@@ -624,6 +643,7 @@
'target_name': 'cast_shell_media',
'type': '<(component)',
'dependencies': [
+ 'cast_public_api',
'media/media.gyp:cast_media',
'../content/content.gyp:content',
'../ipc/ipc.gyp:ipc',

Powered by Google App Engine
This is Rietveld 408576698