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

Side by Side Diff: chromecast/media/media.gyp

Issue 535563002: Add the base class for decoder buffers used in cast media. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Naming: DecoderBufferAdapter. 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/base/decoder_buffer_base.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 'cma/base/decoder_buffer_adapter.cc',
24 'cma/base/decoder_buffer_adapter.h',
25 'cma/base/decoder_buffer_base.cc',
26 'cma/base/decoder_buffer_base.h',
23 ], 27 ],
24 }, 28 },
25 { 29 {
26 'target_name': 'cast_media', 30 'target_name': 'cast_media',
27 'type': 'none', 31 'type': 'none',
28 'dependencies': [ 32 'dependencies': [
29 'cma_base', 33 'cma_base',
30 ], 34 ],
31 }, 35 },
32 { 36 {
33 'target_name': 'cast_media_unittests', 37 'target_name': 'cast_media_unittests',
34 'type': '<(gtest_target_type)', 38 'type': '<(gtest_target_type)',
35 'dependencies': [ 39 'dependencies': [
36 'cast_media', 40 'cast_media',
37 '../../base/base.gyp:base', 41 '../../base/base.gyp:base',
38 '../../base/base.gyp:base_i18n', 42 '../../base/base.gyp:base_i18n',
39 '../../base/base.gyp:test_support_base', 43 '../../base/base.gyp:test_support_base',
40 '../../testing/gmock.gyp:gmock', 44 '../../testing/gmock.gyp:gmock',
41 '../../testing/gtest.gyp:gtest', 45 '../../testing/gtest.gyp:gtest',
42 '../../testing/gtest.gyp:gtest_main', 46 '../../testing/gtest.gyp:gtest_main',
43 ], 47 ],
44 'sources': [ 48 'sources': [
45 'cma/base/buffering_controller_unittest.cc', 49 'cma/base/buffering_controller_unittest.cc',
46 'cma/base/run_all_unittests.cc', 50 'cma/base/run_all_unittests.cc',
47 ], 51 ],
48 }, 52 },
49 ], 53 ],
50 } 54 }
OLDNEW
« no previous file with comments | « chromecast/media/cma/base/decoder_buffer_base.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698