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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 ], | 57 ], |
58 }], | 58 }], |
59 ['OS=="win"', { | 59 ['OS=="win"', { |
60 'sources!': [ | 60 'sources!': [ |
61 'metrics/machine_id_provider_stub.cc', | 61 'metrics/machine_id_provider_stub.cc', |
62 ], | 62 ], |
63 }], | 63 }], |
64 ], | 64 ], |
65 }, | 65 }, |
66 { | 66 { |
| 67 # GN version: //components/metrics:gpu |
| 68 'target_name': 'metrics_gpu', |
| 69 'type': 'static_library', |
| 70 'include_dirs': [ |
| 71 '..', |
| 72 ], |
| 73 'dependencies': [ |
| 74 'component_metrics_proto', |
| 75 'metrics', |
| 76 ], |
| 77 'sources': [ |
| 78 'metrics/gpu/gpu_metrics_provider.cc', |
| 79 'metrics/gpu/gpu_metrics_provider.h', |
| 80 ], |
| 81 }, |
| 82 { |
67 # GN version: //components/metrics:net | 83 # GN version: //components/metrics:net |
68 'target_name': 'metrics_net', | 84 'target_name': 'metrics_net', |
69 'type': 'static_library', | 85 'type': 'static_library', |
70 'include_dirs': [ | 86 'include_dirs': [ |
71 '..', | 87 '..', |
72 ], | 88 ], |
73 'dependencies': [ | 89 'dependencies': [ |
74 '../net/net.gyp:net', | 90 '../net/net.gyp:net', |
75 'metrics', | 91 'metrics', |
76 ], | 92 ], |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 'metrics/serialization/metric_sample.h', | 153 'metrics/serialization/metric_sample.h', |
138 ], | 154 ], |
139 'dependencies': [ | 155 'dependencies': [ |
140 '../base/base.gyp:base', | 156 '../base/base.gyp:base', |
141 ], | 157 ], |
142 }, | 158 }, |
143 ], | 159 ], |
144 }], | 160 }], |
145 ], | 161 ], |
146 } | 162 } |
OLD | NEW |