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

Side by Side 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: Rebase. 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 unified diff | Download patch
« no previous file with comments | « chromecast/media/cma/ipc/media_message_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'cma_base', 8 'target_name': 'cma_base',
9 'type': '<(component)', 9 'type': '<(component)',
10 'dependencies': [ 10 'dependencies': [
(...skipping 13 matching lines...) Expand all
24 'cma/base/cma_logging.h', 24 'cma/base/cma_logging.h',
25 'cma/base/decoder_buffer_adapter.cc', 25 'cma/base/decoder_buffer_adapter.cc',
26 'cma/base/decoder_buffer_adapter.h', 26 'cma/base/decoder_buffer_adapter.h',
27 'cma/base/decoder_buffer_base.cc', 27 'cma/base/decoder_buffer_base.cc',
28 'cma/base/decoder_buffer_base.h', 28 'cma/base/decoder_buffer_base.h',
29 'cma/base/media_task_runner.cc', 29 'cma/base/media_task_runner.cc',
30 'cma/base/media_task_runner.h', 30 'cma/base/media_task_runner.h',
31 ], 31 ],
32 }, 32 },
33 { 33 {
34 'target_name': 'cma_ipc',
35 'type': '<(component)',
36 'dependencies': [
37 '../../base/base.gyp:base',
38 ],
39 'sources': [
40 'cma/ipc/media_memory_chunk.cc',
41 'cma/ipc/media_memory_chunk.h',
42 'cma/ipc/media_message.cc',
43 'cma/ipc/media_message.h',
44 'cma/ipc/media_message_fifo.cc',
45 'cma/ipc/media_message_fifo.h',
46 ],
47 },
48 {
34 'target_name': 'cast_media', 49 'target_name': 'cast_media',
35 'type': 'none', 50 'type': 'none',
36 'dependencies': [ 51 'dependencies': [
37 'cma_base', 52 'cma_base',
53 'cma_ipc',
38 ], 54 ],
39 }, 55 },
40 { 56 {
41 'target_name': 'cast_media_unittests', 57 'target_name': 'cast_media_unittests',
42 'type': '<(gtest_target_type)', 58 'type': '<(gtest_target_type)',
43 'dependencies': [ 59 'dependencies': [
44 'cast_media', 60 'cast_media',
45 '../../base/base.gyp:base', 61 '../../base/base.gyp:base',
46 '../../base/base.gyp:base_i18n', 62 '../../base/base.gyp:base_i18n',
47 '../../base/base.gyp:test_support_base', 63 '../../base/base.gyp:test_support_base',
48 '../../testing/gmock.gyp:gmock', 64 '../../testing/gmock.gyp:gmock',
49 '../../testing/gtest.gyp:gtest', 65 '../../testing/gtest.gyp:gtest',
50 '../../testing/gtest.gyp:gtest_main', 66 '../../testing/gtest.gyp:gtest_main',
51 ], 67 ],
52 'sources': [ 68 'sources': [
53 'cma/base/balanced_media_task_runner_unittest.cc', 69 'cma/base/balanced_media_task_runner_unittest.cc',
54 'cma/base/buffering_controller_unittest.cc', 70 'cma/base/buffering_controller_unittest.cc',
55 'cma/base/run_all_unittests.cc', 71 'cma/base/run_all_unittests.cc',
72 'cma/ipc/media_message_fifo_unittest.cc',
73 'cma/ipc/media_message_unittest.cc',
56 ], 74 ],
57 }, 75 },
58 ], 76 ],
59 } 77 }
OLDNEW
« 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