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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 # GN version: //components/metrics | 8 # GN version: //components/metrics |
9 'target_name': 'metrics', | 9 'target_name': 'metrics', |
10 'type': 'static_library', | 10 'type': 'static_library', |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
89 'type': 'static_library', | 89 'type': 'static_library', |
90 'include_dirs': [ | 90 'include_dirs': [ |
91 '..', | 91 '..', |
92 ], | 92 ], |
93 'dependencies': [ | 93 'dependencies': [ |
94 '../net/net.gyp:net', | 94 '../net/net.gyp:net', |
95 'component_metrics_proto', | 95 'component_metrics_proto', |
96 'metrics', | 96 'metrics', |
97 ], | 97 ], |
98 'sources': [ | 98 'sources': [ |
99 'metrics/profiler/profiler_metrics_provider.cc', | |
Alexei Svitkine (slow)
2014/09/17 15:07:02
Seems like there's a mistake with this diff? From
gunsch
2014/09/17 17:28:28
Thanks for catching, fixed.
| |
100 'metrics/profiler/profiler_metrics_provider.h', | |
101 'metrics/profiler/tracking_synchronizer.cc', | |
102 'metrics/profiler/tracking_synchronizer.h', | |
103 'metrics/profiler/tracking_synchronizer_observer.h', | |
104 ], | |
105 }, | |
106 { | |
107 # GN version: //components/metrics:profiler | |
108 'target_name': 'metrics_profiler', | |
109 'type': 'static_library', | |
110 'include_dirs': [ | |
111 '..', | |
112 ], | |
113 'dependencies': [ | |
114 '../content/content.gyp:content_browser', | |
115 'component_metrics_proto', | |
116 'metrics', | |
117 ], | |
118 'sources': [ | |
99 'metrics/net/network_metrics_provider.cc', | 119 'metrics/net/network_metrics_provider.cc', |
100 'metrics/net/network_metrics_provider.h', | 120 'metrics/net/network_metrics_provider.h', |
101 'metrics/net/net_metrics_log_uploader.cc', | 121 'metrics/net/net_metrics_log_uploader.cc', |
102 'metrics/net/net_metrics_log_uploader.h', | 122 'metrics/net/net_metrics_log_uploader.h', |
103 'metrics/net/wifi_access_point_info_provider.cc', | 123 'metrics/net/wifi_access_point_info_provider.cc', |
104 'metrics/net/wifi_access_point_info_provider.h', | 124 'metrics/net/wifi_access_point_info_provider.h', |
105 'metrics/net/wifi_access_point_info_provider_chromeos.cc', | 125 'metrics/net/wifi_access_point_info_provider_chromeos.cc', |
106 'metrics/net/wifi_access_point_info_provider_chromeos.h', | 126 'metrics/net/wifi_access_point_info_provider_chromeos.h', |
107 ], | 127 ], |
108 }, | 128 }, |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
164 'metrics/serialization/metric_sample.h', | 184 'metrics/serialization/metric_sample.h', |
165 ], | 185 ], |
166 'dependencies': [ | 186 'dependencies': [ |
167 '../base/base.gyp:base', | 187 '../base/base.gyp:base', |
168 ], | 188 ], |
169 }, | 189 }, |
170 ], | 190 ], |
171 }], | 191 }], |
172 ], | 192 ], |
173 } | 193 } |
OLD | NEW |