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

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: 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 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': [
11 '../../base/base.gyp:base', 11 '../../base/base.gyp:base',
12 '../../media/media.gyp:media', 12 '../../media/media.gyp:media',
13 ], 13 ],
14 'include_dirs': [ 14 'include_dirs': [
15 '../..', 15 '../..',
16 ], 16 ],
17 'sources': [ 17 'sources': [
18 'cma/base/buffering_controller.cc', 18 'cma/base/buffering_controller.cc',
19 'cma/base/buffering_controller.h', 19 'cma/base/buffering_controller.h',
20 'cma/base/buffering_state.cc', 20 'cma/base/buffering_state.cc',
21 'cma/base/buffering_state.h', 21 'cma/base/buffering_state.h',
22 'cma/base/cma_logging.h', 22 'cma/base/cma_logging.h',
23 ], 23 ],
24 }, 24 },
25 { 25 {
26 'target_name': 'cma_ipc',
27 'type': '<(component)',
28 'dependencies': [
29 '../../base/base.gyp:base',
30 ],
31 'sources': [
32 'cma/ipc/media_memory_chunk.cc',
33 'cma/ipc/media_memory_chunk.h',
34 'cma/ipc/media_message.cc',
35 'cma/ipc/media_message.h',
36 'cma/ipc/media_message_fifo.cc',
37 'cma/ipc/media_message_fifo.h',
38 ],
39 },
40 {
26 'target_name': 'cast_media', 41 'target_name': 'cast_media',
27 'type': 'none', 42 'type': 'none',
28 'dependencies': [ 43 'dependencies': [
29 'cma_base', 44 'cma_base',
45 'cma_ipc',
30 ], 46 ],
31 }, 47 },
32 { 48 {
33 'target_name': 'cast_media_unittests', 49 'target_name': 'cast_media_unittests',
34 'type': '<(gtest_target_type)', 50 'type': '<(gtest_target_type)',
35 'dependencies': [ 51 'dependencies': [
36 'cast_media', 52 'cast_media',
37 '../../base/base.gyp:base', 53 '../../base/base.gyp:base',
38 '../../base/base.gyp:base_i18n', 54 '../../base/base.gyp:base_i18n',
39 '../../base/base.gyp:test_support_base', 55 '../../base/base.gyp:test_support_base',
40 '../../testing/gmock.gyp:gmock', 56 '../../testing/gmock.gyp:gmock',
41 '../../testing/gtest.gyp:gtest', 57 '../../testing/gtest.gyp:gtest',
42 '../../testing/gtest.gyp:gtest_main', 58 '../../testing/gtest.gyp:gtest_main',
43 ], 59 ],
44 'sources': [ 60 'sources': [
45 'cma/base/buffering_controller_unittest.cc', 61 'cma/base/buffering_controller_unittest.cc',
46 'cma/base/run_all_unittests.cc', 62 'cma/base/run_all_unittests.cc',
63 'cma/ipc/media_message_unittest.cc',
64 '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.
47 ], 65 ],
48 }, 66 },
49 ], 67 ],
50 } 68 }
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