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/security_interstitials/core |
9 'target_name': 'security_interstitials_core', | 9 'target_name': 'security_interstitials_core', |
10 'type': 'static_library', | 10 'type': 'static_library', |
11 'dependencies': [ | 11 'dependencies': [ |
12 '../base/base.gyp:base', | 12 '../base/base.gyp:base', |
| 13 '../base/base.gyp:base_i18n', |
13 '../net/net.gyp:net', | 14 '../net/net.gyp:net', |
14 '../ui/base/ui_base.gyp:ui_base', | 15 '../ui/base/ui_base.gyp:ui_base', |
15 'components_strings.gyp:components_strings', | 16 'components_strings.gyp:components_strings', |
16 'google_core_browser', | 17 'google_core_browser', |
17 'history_core_browser', | 18 'history_core_browser', |
18 'metrics', | 19 'metrics', |
19 'rappor', | 20 'rappor', |
| 21 'ssl_errors', |
| 22 'url_formatter/url_formatter.gyp:url_formatter' |
20 ], | 23 ], |
21 'include_dirs': [ | 24 'include_dirs': [ |
22 '..', | 25 '..', |
23 ], | 26 ], |
24 'sources': [ | 27 'sources': [ |
25 # Note: sources list duplicated in GN build. | 28 # Note: sources list duplicated in GN build. |
| 29 'security_interstitials/core/bad_clock_ui.cc', |
| 30 'security_interstitials/core/bad_clock_ui.h', |
| 31 'security_interstitials/core/common_string_util.cc', |
| 32 'security_interstitials/core/common_string_util.h', |
26 'security_interstitials/core/controller_client.cc', | 33 'security_interstitials/core/controller_client.cc', |
27 'security_interstitials/core/controller_client.h', | 34 'security_interstitials/core/controller_client.h', |
28 'security_interstitials/core/metrics_helper.cc', | 35 'security_interstitials/core/metrics_helper.cc', |
29 'security_interstitials/core/metrics_helper.h', | 36 'security_interstitials/core/metrics_helper.h', |
30 ] | 37 ] |
31 } | 38 } |
32 ] | 39 ] |
33 } | 40 } |
OLD | NEW |