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

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

Issue 509213002: Add a buffering controller for Chromecast. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix bad license header. 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/run_all_unittests.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
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'cma_base',
9 'type': '<(component)',
10 'dependencies': [
11 '../../base/base.gyp:base',
12 '../../media/media.gyp:media',
13 ],
14 'include_dirs': [
15 '../..',
16 ],
17 'sources': [
18 'cma/base/buffering_controller.cc',
19 'cma/base/buffering_controller.h',
20 'cma/base/buffering_state.cc',
21 'cma/base/buffering_state.h',
22 'cma/base/cma_logging.h',
23 ],
24 },
25 {
26 'target_name': 'cast_media',
27 'type': 'none',
28 'dependencies': [
29 'cma_base',
30 ],
31 },
32 {
33 'target_name': 'cast_media_unittests',
34 'type': '<(gtest_target_type)',
35 'dependencies': [
36 'cast_media',
37 '../../base/base.gyp:base',
38 '../../base/base.gyp:base_i18n',
39 '../../base/base.gyp:test_support_base',
40 '../../testing/gmock.gyp:gmock',
41 '../../testing/gtest.gyp:gtest',
42 '../../testing/gtest.gyp:gtest_main',
43 ],
44 'sources': [
45 'cma/base/buffering_controller_unittest.cc',
46 'cma/base/run_all_unittests.cc',
47 ],
48 },
49 ],
50 }
OLDNEW
« no previous file with comments | « chromecast/media/cma/base/run_all_unittests.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698