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 # GYP version: components/security_interstitials.gyp:security_interstitials_core | 5 # GYP version: components/security_interstitials.gyp:security_interstitials_core |
6 static_library("core") { | 6 static_library("core") { |
7 sources = [ | 7 sources = [ |
| 8 "bad_clock_ui.cc", |
| 9 "bad_clock_ui.h", |
| 10 "common_string_util.cc", |
| 11 "common_string_util.h", |
8 "controller_client.cc", | 12 "controller_client.cc", |
9 "controller_client.h", | 13 "controller_client.h", |
10 "metrics_helper.cc", | 14 "metrics_helper.cc", |
11 "metrics_helper.h", | 15 "metrics_helper.h", |
12 ] | 16 ] |
13 | 17 |
14 deps = [ | 18 deps = [ |
15 "//base", | 19 "//base", |
| 20 "//base:i18n", |
16 "//base:prefs", | 21 "//base:prefs", |
17 "//components/google/core/browser", | 22 "//components/google/core/browser", |
18 "//components/history/core/browser", | 23 "//components/history/core/browser", |
19 "//components/metrics", | 24 "//components/metrics", |
20 "//components/rappor", | 25 "//components/rappor", |
| 26 "//components/ssl_errors", |
21 "//components/strings", | 27 "//components/strings", |
| 28 "//components/url_formatter", |
22 "//net", | 29 "//net", |
23 "//ui/base", | 30 "//ui/base", |
24 ] | 31 ] |
25 } | 32 } |
OLD | NEW |