OLD | NEW |
---|---|
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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
45 }, | 45 }, |
46 { | 46 { |
47 'target_name': 'cast_metrics', | 47 'target_name': 'cast_metrics', |
48 'type': '<(component)', | 48 'type': '<(component)', |
49 'dependencies': [ | 49 'dependencies': [ |
50 'cast_common', | 50 'cast_common', |
51 '../components/components.gyp:component_metrics_proto', | 51 '../components/components.gyp:component_metrics_proto', |
52 '../components/components.gyp:metrics', | 52 '../components/components.gyp:metrics', |
53 '../components/components.gyp:metrics_gpu', | 53 '../components/components.gyp:metrics_gpu', |
54 '../components/components.gyp:metrics_net', | 54 '../components/components.gyp:metrics_net', |
55 '../components/components.gyp:metrics_profiler', | 55 '../components/components.gyp:metrics_profiler', |
jochen (gone - plz use gerrit)
2014/09/30 08:26:40
if you use headers from content/browser, you shoul
gunsch
2014/09/30 16:34:11
Done.
| |
56 ], | 56 ], |
57 'sources': [ | 57 'sources': [ |
58 'metrics/cast_metrics_prefs.cc', | 58 'metrics/cast_metrics_prefs.cc', |
59 'metrics/cast_metrics_prefs.h', | 59 'metrics/cast_metrics_prefs.h', |
60 'metrics/cast_metrics_service_client.cc', | 60 'metrics/cast_metrics_service_client.cc', |
61 'metrics/cast_metrics_service_client.h', | 61 'metrics/cast_metrics_service_client.h', |
62 'metrics/cast_stability_metrics_provider.cc', | |
63 'metrics/cast_stability_metrics_provider.h', | |
62 'metrics/platform_metrics_providers.h', | 64 'metrics/platform_metrics_providers.h', |
63 ], | 65 ], |
64 'conditions': [ | 66 'conditions': [ |
65 ['chromecast_branding=="Chrome"', { | 67 ['chromecast_branding=="Chrome"', { |
66 'dependencies': [ | 68 'dependencies': [ |
67 '<(cast_internal_gyp):cast_metrics_internal', | 69 '<(cast_internal_gyp):cast_metrics_internal', |
68 ], | 70 ], |
69 }, { | 71 }, { |
70 'sources': [ | 72 'sources': [ |
71 'metrics/platform_metrics_providers_simple.cc', | 73 'metrics/platform_metrics_providers_simple.cc', |
(...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
470 'sources': [ | 472 'sources': [ |
471 'shell/browser/test/chromecast_browser_test.cc', | 473 'shell/browser/test/chromecast_browser_test.cc', |
472 'shell/browser/test/chromecast_browser_test.h', | 474 'shell/browser/test/chromecast_browser_test.h', |
473 'shell/browser/test/chromecast_browser_test_runner.cc', | 475 'shell/browser/test/chromecast_browser_test_runner.cc', |
474 ], | 476 ], |
475 }, | 477 }, |
476 ], # end of targets | 478 ], # end of targets |
477 }], | 479 }], |
478 ], # end of conditions | 480 ], # end of conditions |
479 } | 481 } |
OLD | NEW |