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

Side by Side Diff: chromecast/chromecast.gyp

Issue 652353003: Chromecast: adds class to help record complex histograms. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: resets initial buffering state on flush Created 6 years, 2 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': {
11 'include_dirs': [ 11 'include_dirs': [
12 '..', # Root of Chromium checkout 12 '..', # Root of Chromium checkout
13 ], 13 ],
14 }, 14 },
15 'targets': [ 15 'targets': [
16 { 16 {
17 'target_name': 'cast_base',
18 'type': '<(component)',
19 'dependencies': [
20 '../base/base.gyp:base',
21 ],
22 'sources': [
23 'base/metrics/cast_histograms.h',
24 'base/metrics/cast_metrics_helper.cc',
25 'base/metrics/cast_metrics_helper.h',
26 ],
27 }, # end of target 'cast_base'
28 {
17 'target_name': 'cast_net', 29 'target_name': 'cast_net',
18 'type': '<(component)', 30 'type': '<(component)',
19 'sources': [ 31 'sources': [
20 'net/network_change_notifier_cast.cc', 32 'net/network_change_notifier_cast.cc',
21 'net/network_change_notifier_cast.h', 33 'net/network_change_notifier_cast.h',
22 'net/network_change_notifier_factory_cast.cc', 34 'net/network_change_notifier_factory_cast.cc',
23 'net/network_change_notifier_factory_cast.h', 35 'net/network_change_notifier_factory_cast.h',
24 ], 36 ],
25 }, 37 },
26 { 38 {
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 'includes': [ '../build/repack_action.gypi' ], 88 'includes': [ '../build/repack_action.gypi' ],
77 }, 89 },
78 ], 90 ],
79 }, 91 },
80 # This target contains all content-embedder implementation that is 92 # This target contains all content-embedder implementation that is
81 # non-platform-specific. 93 # non-platform-specific.
82 { 94 {
83 'target_name': 'cast_shell_common', 95 'target_name': 'cast_shell_common',
84 'type': '<(component)', 96 'type': '<(component)',
85 'dependencies': [ 97 'dependencies': [
98 'cast_base',
86 'cast_shell_pak', 99 'cast_shell_pak',
87 'cast_shell_resources', 100 'cast_shell_resources',
88 'cast_version_header', 101 'cast_version_header',
89 'chromecast_locales.gyp:chromecast_locales_pak', 102 'chromecast_locales.gyp:chromecast_locales_pak',
90 'chromecast_locales.gyp:chromecast_settings', 103 'chromecast_locales.gyp:chromecast_settings',
91 'media/media.gyp:media_base', 104 'media/media.gyp:media_base',
92 '../base/base.gyp:base', 105 '../base/base.gyp:base',
93 '../components/components.gyp:cdm_renderer', 106 '../components/components.gyp:cdm_renderer',
94 '../components/components.gyp:component_metrics_proto', 107 '../components/components.gyp:component_metrics_proto',
95 '../components/components.gyp:metrics', 108 '../components/components.gyp:metrics',
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 'common/version.h.in', 248 'common/version.h.in',
236 '<@(_outputs)', 249 '<@(_outputs)',
237 ], 250 ],
238 'includes': [ 251 'includes': [
239 '../build/util/version.gypi', 252 '../build/util/version.gypi',
240 ], 253 ],
241 }, 254 },
242 ], 255 ],
243 }, 256 },
244 { 257 {
258 'target_name': 'cast_metrics_test_support',
259 'type': '<(component)',
260 'dependencies': [
261 'cast_base',
262 ],
263 'sources': [
264 'base/metrics/cast_metrics_test_helper.cc',
265 'base/metrics/cast_metrics_test_helper.h',
266 ],
267 }, # end of target 'cast_metrics_test_support'
268 {
245 'target_name': 'cast_tests', 269 'target_name': 'cast_tests',
246 'type': 'none', 270 'type': 'none',
247 'dependencies': [ 271 'dependencies': [
248 'media/media.gyp:cast_media_unittests', 272 'media/media.gyp:cast_media_unittests',
249 ], 273 ],
250 }, 274 },
251 ], # end of targets 275 ], # end of targets
252 276
253 # Targets for Android receiver. 277 # Targets for Android receiver.
254 'conditions': [ 278 'conditions': [
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
434 'sources': [ 458 'sources': [
435 'browser/test/chromecast_browser_test.cc', 459 'browser/test/chromecast_browser_test.cc',
436 'browser/test/chromecast_browser_test.h', 460 'browser/test/chromecast_browser_test.h',
437 'browser/test/chromecast_browser_test_runner.cc', 461 'browser/test/chromecast_browser_test_runner.cc',
438 ], 462 ],
439 }, 463 },
440 ], # end of targets 464 ], # end of targets
441 }], 465 }],
442 ], # end of conditions 466 ], # end of conditions
443 } 467 }
OLDNEW
« no previous file with comments | « chromecast/browser/cast_browser_process.cc ('k') | chromecast/media/cma/base/buffering_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698