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

Side by Side Diff: chromecast/chromecast.gyp

Issue 509213002: Add a buffering controller for Chromecast. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove ref-counting on the buffering controller. 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
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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 'chromecast_branding%': 'Chromium', 8 'chromecast_branding%': 'Chromium',
9 }, 9 },
10 'target_defaults': { 10 'target_defaults': {
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 }, 147 },
148 'includes': [ '../build/repack_action.gypi' ], 148 'includes': [ '../build/repack_action.gypi' ],
149 }, 149 },
150 ], 150 ],
151 }, 151 },
152 { 152 {
153 'target_name': 'cast_shell', 153 'target_name': 'cast_shell',
154 'type': 'executable', 154 'type': 'executable',
155 'dependencies': [ 155 'dependencies': [
156 'cast_common', 156 'cast_common',
157 'cast_metrics', 157 'cast_metrics',
lcwu1 2014/08/28 02:14:58 Should we add cast_media here as a dependency so t
damienv1 2014/08/29 15:09:05 Done.
158 'cast_service', 158 'cast_service',
159 'cast_shell_pak', 159 'cast_shell_pak',
160 'cast_shell_resources', 160 'cast_shell_resources',
161 'cast_version_header', 161 'cast_version_header',
162 'chromecast_locales.gyp:chromecast_locales_pak', 162 'chromecast_locales.gyp:chromecast_locales_pak',
163 'chromecast_locales.gyp:chromecast_settings', 163 'chromecast_locales.gyp:chromecast_settings',
164 '../components/components.gyp:component_metrics_proto', 164 '../components/components.gyp:component_metrics_proto',
165 '../content/content.gyp:content', 165 '../content/content.gyp:content',
166 '../content/content.gyp:content_app_browser', 166 '../content/content.gyp:content_app_browser',
167 '../skia/skia.gyp:skia', 167 '../skia/skia.gyp:skia',
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 '-e', 'VERSION_FULL="<(version_full)"', 239 '-e', 'VERSION_FULL="<(version_full)"',
240 'common/version.h.in', 240 'common/version.h.in',
241 '<@(_outputs)', 241 '<@(_outputs)',
242 ], 242 ],
243 'includes': [ 243 'includes': [
244 '../build/util/version.gypi', 244 '../build/util/version.gypi',
245 ], 245 ],
246 }, 246 },
247 ], 247 ],
248 }, 248 },
249 {
250 'target_name': 'cast_tests',
251 'type': 'none',
252 'dependencies': [
253 'media/media.gyp:cast_media_unittests',
254 ],
255 },
249 ], # end of targets 256 ], # end of targets
250 } 257 }
OLDNEW
« no previous file with comments | « no previous file | chromecast/media/cma/base/buffering_controller.h » ('j') | chromecast/media/cma/base/buffering_controller.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698