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

Unified 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/chromecast.gyp
diff --git a/chromecast/chromecast.gyp b/chromecast/chromecast.gyp
index 7485fad87b8d33efef284d09c6483e4583f56717..d15c70771edb32df849cac87e05a352c405cffa6 100644
--- a/chromecast/chromecast.gyp
+++ b/chromecast/chromecast.gyp
@@ -14,6 +14,18 @@
},
'targets': [
{
+ 'target_name': 'cast_base',
+ 'type': '<(component)',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ ],
+ 'sources': [
+ 'base/metrics/cast_histograms.h',
+ 'base/metrics/cast_metrics_helper.cc',
+ 'base/metrics/cast_metrics_helper.h',
+ ],
+ }, # end of target 'cast_base'
+ {
'target_name': 'cast_net',
'type': '<(component)',
'sources': [
@@ -83,6 +95,7 @@
'target_name': 'cast_shell_common',
'type': '<(component)',
'dependencies': [
+ 'cast_base',
'cast_shell_pak',
'cast_shell_resources',
'cast_version_header',
@@ -242,6 +255,17 @@
],
},
{
+ 'target_name': 'cast_metrics_test_support',
+ 'type': '<(component)',
+ 'dependencies': [
+ 'cast_base',
+ ],
+ 'sources': [
+ 'base/metrics/cast_metrics_test_helper.cc',
+ 'base/metrics/cast_metrics_test_helper.h',
+ ],
+ }, # end of target 'cast_metrics_test_support'
+ {
'target_name': 'cast_tests',
'type': 'none',
'dependencies': [
« 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