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

Side by Side Diff: components/metrics_services_manager.gypi

Issue 1412113002: Componentize MetricsServicesManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@refactor_metrics_services_manager
Patch Set: Rebase Created 5 years, 2 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
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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/security_interstitials/core 8 # GN version: //components/metrics_services_manager
9 'target_name': 'security_interstitials_core', 9 'target_name': 'metrics_services_manager',
10 'type': 'static_library', 10 'type': 'static_library',
11 'dependencies': [
12 '../base/base.gyp:base',
13 '../net/net.gyp:net',
14 'history_core_browser',
15 'metrics',
16 'rappor',
17 ],
18 'include_dirs': [ 11 'include_dirs': [
19 '..', 12 '..',
20 ], 13 ],
14 'dependencies': [
15 '../base/base.gyp:base',
16 'metrics',
17 'rappor',
18 'variations',
19 ],
21 'sources': [ 20 'sources': [
22 # Note: sources list duplicated in GN build. 21 # Note: sources list duplicated in GN build.
23 'security_interstitials/core/metrics_helper.cc', 22 'metrics_services_manager/metrics_services_manager.cc',
24 'security_interstitials/core/metrics_helper.h', 23 'metrics_services_manager/metrics_services_manager.h',
25 ] 24 'metrics_services_manager/metrics_services_manager_client.h',
26 } 25 ],
27 ] 26 },
28 } 27 ],
28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698