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

Side by Side Diff: components/metrics.gypi

Issue 756233002: Add more components unittests to the GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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/login/BUILD.gn ('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',
11 'include_dirs': [ 11 'include_dirs': [
12 '..', 12 '..',
13 ], 13 ],
14 'dependencies': [ 14 'dependencies': [
15 '../base/base.gyp:base', 15 '../base/base.gyp:base',
16 '../base/base.gyp:base_i18n',
17 '../base/base.gyp:base_prefs',
16 '../third_party/zlib/zlib.gyp:zlib', 18 '../third_party/zlib/zlib.gyp:zlib',
17 'component_metrics_proto', 19 'component_metrics_proto',
18 'variations', 20 'variations',
19 ], 21 ],
20 'export_dependent_settings': [ 22 'export_dependent_settings': [
21 'component_metrics_proto', 23 'component_metrics_proto',
22 ], 24 ],
23 'sources': [ 25 'sources': [
24 'metrics/clean_exit_beacon.cc', 26 'metrics/clean_exit_beacon.cc',
25 'metrics/clean_exit_beacon.h', 27 'metrics/clean_exit_beacon.h',
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 ], 77 ],
76 }, 78 },
77 { 79 {
78 # GN version: //components/metrics:gpu 80 # GN version: //components/metrics:gpu
79 'target_name': 'metrics_gpu', 81 'target_name': 'metrics_gpu',
80 'type': 'static_library', 82 'type': 'static_library',
81 'include_dirs': [ 83 'include_dirs': [
82 '..', 84 '..',
83 ], 85 ],
84 'dependencies': [ 86 'dependencies': [
87 '../base/base.gyp:base',
88 '../content/content.gyp:content_browser',
89 '../ui/gfx/gfx.gyp:gfx',
85 'component_metrics_proto', 90 'component_metrics_proto',
86 'metrics', 91 'metrics',
87 ], 92 ],
88 'sources': [ 93 'sources': [
89 'metrics/gpu/gpu_metrics_provider.cc', 94 'metrics/gpu/gpu_metrics_provider.cc',
90 'metrics/gpu/gpu_metrics_provider.h', 95 'metrics/gpu/gpu_metrics_provider.h',
91 ], 96 ],
92 }, 97 },
93 { 98 {
94 # GN version: //components/metrics:net 99 # GN version: //components/metrics:net
95 'target_name': 'metrics_net', 100 'target_name': 'metrics_net',
96 'type': 'static_library', 101 'type': 'static_library',
97 'include_dirs': [ 102 'include_dirs': [
98 '..', 103 '..',
99 ], 104 ],
100 'dependencies': [ 105 'dependencies': [
106 '../base/base.gyp:base',
101 '../net/net.gyp:net', 107 '../net/net.gyp:net',
108 '../url/url.gyp:url_lib',
102 'component_metrics_proto', 109 'component_metrics_proto',
103 'metrics', 110 'metrics',
104 ], 111 ],
105 'sources': [ 112 'sources': [
106 'metrics/net/network_metrics_provider.cc', 113 'metrics/net/network_metrics_provider.cc',
107 'metrics/net/network_metrics_provider.h', 114 'metrics/net/network_metrics_provider.h',
108 'metrics/net/net_metrics_log_uploader.cc', 115 'metrics/net/net_metrics_log_uploader.cc',
109 'metrics/net/net_metrics_log_uploader.h', 116 'metrics/net/net_metrics_log_uploader.h',
110 'metrics/net/wifi_access_point_info_provider.cc', 117 'metrics/net/wifi_access_point_info_provider.cc',
111 'metrics/net/wifi_access_point_info_provider.h', 118 'metrics/net/wifi_access_point_info_provider.h',
112 'metrics/net/wifi_access_point_info_provider_chromeos.cc', 119 'metrics/net/wifi_access_point_info_provider_chromeos.cc',
113 'metrics/net/wifi_access_point_info_provider_chromeos.h', 120 'metrics/net/wifi_access_point_info_provider_chromeos.h',
114 ], 121 ],
115 }, 122 },
116 { 123 {
117 # GN version: //components/metrics:profiler 124 # GN version: //components/metrics:profiler
118 'target_name': 'metrics_profiler', 125 'target_name': 'metrics_profiler',
119 'type': 'static_library', 126 'type': 'static_library',
120 'include_dirs': [ 127 'include_dirs': [
121 '..', 128 '..',
122 ], 129 ],
123 'dependencies': [ 130 'dependencies': [
124 '../content/content.gyp:content_browser', 131 '../content/content.gyp:content_browser',
132 '../content/content.gyp:content_common',
125 'component_metrics_proto', 133 'component_metrics_proto',
126 'metrics', 134 'metrics',
135 'variations',
127 ], 136 ],
128 'export_dependent_settings': [ 137 'export_dependent_settings': [
129 'component_metrics_proto', 138 'component_metrics_proto',
130 ], 139 ],
131 'sources': [ 140 'sources': [
132 'metrics/profiler/profiler_metrics_provider.cc', 141 'metrics/profiler/profiler_metrics_provider.cc',
133 'metrics/profiler/profiler_metrics_provider.h', 142 'metrics/profiler/profiler_metrics_provider.h',
134 'metrics/profiler/tracking_synchronizer.cc', 143 'metrics/profiler/tracking_synchronizer.cc',
135 'metrics/profiler/tracking_synchronizer.h', 144 'metrics/profiler/tracking_synchronizer.h',
136 'metrics/profiler/tracking_synchronizer_observer.h', 145 'metrics/profiler/tracking_synchronizer_observer.h',
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 'metrics/serialization/metric_sample.h', 203 'metrics/serialization/metric_sample.h',
195 ], 204 ],
196 'dependencies': [ 205 'dependencies': [
197 '../base/base.gyp:base', 206 '../base/base.gyp:base',
198 ], 207 ],
199 }, 208 },
200 ], 209 ],
201 }], 210 }],
202 ], 211 ],
203 } 212 }
OLDNEW
« no previous file with comments | « components/login/BUILD.gn ('k') | components/metrics/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698