OLD | NEW |
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 } |
OLD | NEW |