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', |
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 '../crypto/crypto.gyp:crypto', |
18 '../third_party/zlib/zlib.gyp:zlib', | 19 '../third_party/zlib/zlib.gyp:zlib', |
19 'component_metrics_proto', | 20 'component_metrics_proto', |
20 'variations', | 21 'variations', |
21 ], | 22 ], |
22 'export_dependent_settings': [ | 23 'export_dependent_settings': [ |
23 'component_metrics_proto', | 24 'component_metrics_proto', |
24 ], | 25 ], |
25 'sources': [ | 26 'sources': [ |
26 'metrics/call_stack_profile_metrics_provider.cc', | 27 'metrics/call_stack_profile_metrics_provider.cc', |
27 'metrics/call_stack_profile_metrics_provider.h', | 28 'metrics/call_stack_profile_metrics_provider.h', |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 'metrics/metrics_service_client.cc', | 69 'metrics/metrics_service_client.cc', |
69 'metrics/metrics_service_client.h', | 70 'metrics/metrics_service_client.h', |
70 'metrics/metrics_state_manager.cc', | 71 'metrics/metrics_state_manager.cc', |
71 'metrics/metrics_state_manager.h', | 72 'metrics/metrics_state_manager.h', |
72 'metrics/metrics_switches.cc', | 73 'metrics/metrics_switches.cc', |
73 'metrics/metrics_switches.h', | 74 'metrics/metrics_switches.h', |
74 'metrics/persisted_logs.cc', | 75 'metrics/persisted_logs.cc', |
75 'metrics/persisted_logs.h', | 76 'metrics/persisted_logs.h', |
76 'metrics/url_constants.cc', | 77 'metrics/url_constants.cc', |
77 'metrics/url_constants.h', | 78 'metrics/url_constants.h', |
| 79 'metrics/variations_seed_store.cc', |
| 80 'metrics/variations_seed_store.h', |
78 ], | 81 ], |
79 'conditions': [ | 82 'conditions': [ |
80 ['chromeos==1', { | 83 ['chromeos==1', { |
81 'dependencies': [ | 84 'dependencies': [ |
82 'metrics_serialization', | 85 'metrics_serialization', |
83 ], | 86 ], |
84 }], | 87 }], |
85 ['OS=="win"', { | 88 ['OS=="win"', { |
86 'sources!': [ | 89 'sources!': [ |
87 'metrics/machine_id_provider_stub.cc', | 90 'metrics/machine_id_provider_stub.cc', |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 'metrics/serialization/serialization_utils.h', | 225 'metrics/serialization/serialization_utils.h', |
223 ], | 226 ], |
224 'dependencies': [ | 227 'dependencies': [ |
225 '../base/base.gyp:base', | 228 '../base/base.gyp:base', |
226 ], | 229 ], |
227 }, | 230 }, |
228 ], | 231 ], |
229 }], | 232 }], |
230 ], | 233 ], |
231 } | 234 } |
OLD | NEW |