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

Side by Side Diff: components/metrics.gypi

Issue 981143006: Metrics provider for statistical stack profiler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: fix multiline comment Created 5 years, 9 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
« no previous file with comments | « components/components_tests.gyp ('k') | components/metrics/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 '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',
11 'include_dirs': [ 11 'include_dirs': [
12 '..', 12 '..',
13 ], 13 ],
14 'dependencies': [ 14 'dependencies': [
15 '../base/base.gyp:base', 15 '../base/base.gyp:base',
16 '../base/base.gyp:base_i18n', 16 '../base/base.gyp:base_i18n',
17 '../base/base.gyp:base_prefs', 17 '../base/base.gyp:base_prefs',
18 '../third_party/zlib/zlib.gyp:zlib', 18 '../third_party/zlib/zlib.gyp:zlib',
19 'component_metrics_proto', 19 'component_metrics_proto',
20 'variations', 20 'variations',
21 ], 21 ],
22 'export_dependent_settings': [ 22 'export_dependent_settings': [
23 'component_metrics_proto', 23 'component_metrics_proto',
24 ], 24 ],
25 'sources': [ 25 'sources': [
26 'metrics/call_stack_profile_metrics_provider.cc',
27 'metrics/call_stack_profile_metrics_provider.h',
26 'metrics/clean_exit_beacon.cc', 28 'metrics/clean_exit_beacon.cc',
27 'metrics/clean_exit_beacon.h', 29 'metrics/clean_exit_beacon.h',
28 'metrics/client_info.cc', 30 'metrics/client_info.cc',
29 'metrics/client_info.h', 31 'metrics/client_info.h',
30 'metrics/cloned_install_detector.cc', 32 'metrics/cloned_install_detector.cc',
31 'metrics/cloned_install_detector.h', 33 'metrics/cloned_install_detector.h',
32 'metrics/compression_utils.cc', 34 'metrics/compression_utils.cc',
33 'metrics/compression_utils.h', 35 'metrics/compression_utils.h',
34 'metrics/daily_event.cc', 36 'metrics/daily_event.cc',
35 'metrics/daily_event.h', 37 'metrics/daily_event.h',
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 'metrics/profiler/tracking_synchronizer_observer.h', 153 'metrics/profiler/tracking_synchronizer_observer.h',
152 ], 154 ],
153 }, 155 },
154 { 156 {
155 # Protobuf compiler / generator for UMA (User Metrics Analysis). 157 # Protobuf compiler / generator for UMA (User Metrics Analysis).
156 # 158 #
157 # GN version: //components/metrics/proto:proto 159 # GN version: //components/metrics/proto:proto
158 'target_name': 'component_metrics_proto', 160 'target_name': 'component_metrics_proto',
159 'type': 'static_library', 161 'type': 'static_library',
160 'sources': [ 162 'sources': [
163 'metrics/proto/call_stack_profile.proto',
161 'metrics/proto/cast_logs.proto', 164 'metrics/proto/cast_logs.proto',
162 'metrics/proto/chrome_user_metrics_extension.proto', 165 'metrics/proto/chrome_user_metrics_extension.proto',
163 'metrics/proto/histogram_event.proto', 166 'metrics/proto/histogram_event.proto',
164 'metrics/proto/omnibox_event.proto', 167 'metrics/proto/omnibox_event.proto',
165 'metrics/proto/omnibox_input_type.proto', 168 'metrics/proto/omnibox_input_type.proto',
166 'metrics/proto/perf_data.proto', 169 'metrics/proto/perf_data.proto',
167 'metrics/proto/profiler_event.proto', 170 'metrics/proto/profiler_event.proto',
168 'metrics/proto/sampled_profile.proto', 171 'metrics/proto/sampled_profile.proto',
169 'metrics/proto/system_profile.proto', 172 'metrics/proto/system_profile.proto',
170 'metrics/proto/user_action_event.proto', 173 'metrics/proto/user_action_event.proto',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 'metrics/serialization/serialization_utils.h', 213 'metrics/serialization/serialization_utils.h',
211 ], 214 ],
212 'dependencies': [ 215 'dependencies': [
213 '../base/base.gyp:base', 216 '../base/base.gyp:base',
214 ], 217 ],
215 }, 218 },
216 ], 219 ],
217 }], 220 }],
218 ], 221 ],
219 } 222 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/metrics/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698