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