| 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 'target_name': 'metrics', | 8 'target_name': 'metrics', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'include_dirs': [ | 10 'include_dirs': [ |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 '../net/net.gyp:net', | 72 '../net/net.gyp:net', |
| 73 'metrics', | 73 'metrics', |
| 74 ], | 74 ], |
| 75 'sources': [ | 75 'sources': [ |
| 76 'metrics/net/net_metrics_log_uploader.cc', | 76 'metrics/net/net_metrics_log_uploader.cc', |
| 77 'metrics/net/net_metrics_log_uploader.h', | 77 'metrics/net/net_metrics_log_uploader.h', |
| 78 ], | 78 ], |
| 79 }, | 79 }, |
| 80 { | 80 { |
| 81 # Protobuf compiler / generator for UMA (User Metrics Analysis). | 81 # Protobuf compiler / generator for UMA (User Metrics Analysis). |
| 82 # |
| 83 # GN version: //component/metrics/proto:proto |
| 82 'target_name': 'component_metrics_proto', | 84 'target_name': 'component_metrics_proto', |
| 83 'type': 'static_library', | 85 'type': 'static_library', |
| 84 'sources': [ | 86 'sources': [ |
| 85 'metrics/proto/chrome_user_metrics_extension.proto', | 87 'metrics/proto/chrome_user_metrics_extension.proto', |
| 86 'metrics/proto/histogram_event.proto', | 88 'metrics/proto/histogram_event.proto', |
| 87 'metrics/proto/omnibox_event.proto', | 89 'metrics/proto/omnibox_event.proto', |
| 88 'metrics/proto/omnibox_input_type.proto', | 90 'metrics/proto/omnibox_input_type.proto', |
| 89 'metrics/proto/perf_data.proto', | 91 'metrics/proto/perf_data.proto', |
| 90 'metrics/proto/profiler_event.proto', | 92 'metrics/proto/profiler_event.proto', |
| 91 'metrics/proto/sampled_profile.proto', | 93 'metrics/proto/sampled_profile.proto', |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 'metrics/chromeos/metric_sample.h', | 134 'metrics/chromeos/metric_sample.h', |
| 133 ], | 135 ], |
| 134 'dependencies': [ | 136 'dependencies': [ |
| 135 '../base/base.gyp:base', | 137 '../base/base.gyp:base', |
| 136 ], | 138 ], |
| 137 }, | 139 }, |
| 138 ], | 140 ], |
| 139 }], | 141 }], |
| 140 ], | 142 ], |
| 141 } | 143 } |
| OLD | NEW |