Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(629)

Side by Side Diff: components/metrics.gypi

Issue 523273003: Moves GPUMetricsProvider to //components/metrics. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/components_tests.gyp ('k') | components/metrics/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 ], 61 ],
62 }], 62 }],
63 ['OS=="win"', { 63 ['OS=="win"', {
64 'sources!': [ 64 'sources!': [
65 'metrics/machine_id_provider_stub.cc', 65 'metrics/machine_id_provider_stub.cc',
66 ], 66 ],
67 }], 67 }],
68 ], 68 ],
69 }, 69 },
70 { 70 {
71 # GN version: //components/metrics:gpu
72 'target_name': 'metrics_gpu',
73 'type': 'static_library',
74 'include_dirs': [
75 '..',
76 ],
77 'dependencies': [
78 'component_metrics_proto',
79 'metrics',
80 ],
81 'sources': [
82 'metrics/gpu/gpu_metrics_provider.cc',
83 'metrics/gpu/gpu_metrics_provider.h',
84 ],
85 },
86 {
71 # GN version: //components/metrics:net 87 # GN version: //components/metrics:net
72 'target_name': 'metrics_net', 88 'target_name': 'metrics_net',
73 'type': 'static_library', 89 'type': 'static_library',
74 'include_dirs': [ 90 'include_dirs': [
75 '..', 91 '..',
76 ], 92 ],
77 'dependencies': [ 93 'dependencies': [
78 '../net/net.gyp:net', 94 '../net/net.gyp:net',
79 'component_metrics_proto', 95 'component_metrics_proto',
80 'metrics', 96 'metrics',
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 'metrics/serialization/metric_sample.h', 164 'metrics/serialization/metric_sample.h',
149 ], 165 ],
150 'dependencies': [ 166 'dependencies': [
151 '../base/base.gyp:base', 167 '../base/base.gyp:base',
152 ], 168 ],
153 }, 169 },
154 ], 170 ],
155 }], 171 }],
156 ], 172 ],
157 } 173 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/metrics/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698