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

Unified Diff: chromecast/media/media.gyp

Issue 529223003: IPC to pass media data using a lock free circular fifo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add more comments. Created 6 years, 3 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 | « chromecast/media/cma/ipc/media_message_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/media/media.gyp
diff --git a/chromecast/media/media.gyp b/chromecast/media/media.gyp
index c6f70301748ab048cd8c84587fc50d2951d2f3c3..f512e4d5b062d493da2ce086dbe80dcae4f14c54 100644
--- a/chromecast/media/media.gyp
+++ b/chromecast/media/media.gyp
@@ -23,10 +23,26 @@
],
},
{
+ 'target_name': 'cma_ipc',
+ 'type': '<(component)',
+ 'dependencies': [
+ '../../base/base.gyp:base',
+ ],
+ 'sources': [
+ 'cma/ipc/media_memory_chunk.cc',
+ 'cma/ipc/media_memory_chunk.h',
+ 'cma/ipc/media_message.cc',
+ 'cma/ipc/media_message.h',
+ 'cma/ipc/media_message_fifo.cc',
+ 'cma/ipc/media_message_fifo.h',
+ ],
+ },
+ {
'target_name': 'cast_media',
'type': 'none',
'dependencies': [
'cma_base',
+ 'cma_ipc',
],
},
{
@@ -44,6 +60,8 @@
'sources': [
'cma/base/buffering_controller_unittest.cc',
'cma/base/run_all_unittests.cc',
+ 'cma/ipc/media_message_unittest.cc',
+ 'cma/ipc/media_message_fifo_unittest.cc',
lcwu1 2014/09/04 01:21:52 nit: not in alphabetical order.
damienv1 2014/09/04 15:55:20 Done.
],
},
],
« no previous file with comments | « chromecast/media/cma/ipc/media_message_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698