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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
65 }, | 65 }, |
66 { | 66 { |
67 # GN version: //components/metrics:net | 67 # GN version: //components/metrics:net |
68 'target_name': 'metrics_net', | 68 'target_name': 'metrics_net', |
69 'type': 'static_library', | 69 'type': 'static_library', |
70 'include_dirs': [ | 70 'include_dirs': [ |
71 '..', | 71 '..', |
72 ], | 72 ], |
73 'dependencies': [ | 73 'dependencies': [ |
74 '../net/net.gyp:net', | 74 '../net/net.gyp:net', |
75 'component_metrics_proto', | |
75 'metrics', | 76 'metrics', |
76 ], | 77 ], |
77 'sources': [ | 78 'sources': [ |
79 'metrics/net/network_metrics_provider.cc', | |
80 'metrics/net/network_metrics_provider.h', | |
78 'metrics/net/net_metrics_log_uploader.cc', | 81 'metrics/net/net_metrics_log_uploader.cc', |
79 'metrics/net/net_metrics_log_uploader.h', | 82 'metrics/net/net_metrics_log_uploader.h', |
83 'metrics/net/wifi_access_point_info_provider.h', | |
84 'metrics/net/wifi_access_point_info_provider.cc', | |
Alexei Svitkine (slow)
2014/09/10 14:50:47
Nit: Put the .cc file before the .h file to match
gunsch
2014/09/10 16:18:58
Done.
| |
85 'metrics/net/wifi_access_point_info_provider_chromeos.h', | |
86 'metrics/net/wifi_access_point_info_provider_chromeos.cc', | |
80 ], | 87 ], |
81 }, | 88 }, |
82 { | 89 { |
83 # Protobuf compiler / generator for UMA (User Metrics Analysis). | 90 # Protobuf compiler / generator for UMA (User Metrics Analysis). |
84 # | 91 # |
85 # GN version: //components/metrics/proto:proto | 92 # GN version: //components/metrics/proto:proto |
86 'target_name': 'component_metrics_proto', | 93 'target_name': 'component_metrics_proto', |
87 'type': 'static_library', | 94 'type': 'static_library', |
88 'sources': [ | 95 'sources': [ |
89 'metrics/proto/chrome_user_metrics_extension.proto', | 96 'metrics/proto/chrome_user_metrics_extension.proto', |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
137 'metrics/serialization/metric_sample.h', | 144 'metrics/serialization/metric_sample.h', |
138 ], | 145 ], |
139 'dependencies': [ | 146 'dependencies': [ |
140 '../base/base.gyp:base', | 147 '../base/base.gyp:base', |
141 ], | 148 ], |
142 }, | 149 }, |
143 ], | 150 ], |
144 }], | 151 }], |
145 ], | 152 ], |
146 } | 153 } |
OLD | NEW |