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 static_library("core") { | 5 static_library("core") { |
6 sources = [ | 6 sources = [ |
7 "bad_clock_ui.cc", | 7 "bad_clock_ui.cc", |
8 "bad_clock_ui.h", | 8 "bad_clock_ui.h", |
9 "base_safe_browsing_error_ui.cc", | 9 "base_safe_browsing_error_ui.cc", |
10 "base_safe_browsing_error_ui.h", | 10 "base_safe_browsing_error_ui.h", |
11 "common_string_util.cc", | 11 "common_string_util.cc", |
12 "common_string_util.h", | 12 "common_string_util.h", |
13 "controller_client.cc", | 13 "controller_client.cc", |
14 "controller_client.h", | 14 "controller_client.h", |
15 "metrics_helper.cc", | 15 "metrics_helper.cc", |
16 "metrics_helper.h", | 16 "metrics_helper.h", |
17 "safe_browsing_loud_error_ui.cc", | 17 "safe_browsing_loud_error_ui.cc", |
18 "safe_browsing_loud_error_ui.h", | 18 "safe_browsing_loud_error_ui.h", |
19 "safe_browsing_quiet_error_ui.cc", | 19 "safe_browsing_quiet_error_ui.cc", |
20 "safe_browsing_quiet_error_ui.h", | 20 "safe_browsing_quiet_error_ui.h", |
21 "ssl_error_ui.cc", | 21 "ssl_error_ui.cc", |
22 "ssl_error_ui.h", | 22 "ssl_error_ui.h", |
| 23 "superfish_error_ui.cc", |
| 24 "superfish_error_ui.h", |
23 "urls.cc", | 25 "urls.cc", |
24 "urls.h", | 26 "urls.h", |
25 ] | 27 ] |
26 | 28 |
27 deps = [ | 29 deps = [ |
28 "//base", | 30 "//base", |
29 "//base:i18n", | 31 "//base:i18n", |
30 "//components/google/core/browser", | 32 "//components/google/core/browser", |
31 "//components/history/core/browser", | 33 "//components/history/core/browser", |
32 "//components/metrics", | 34 "//components/metrics", |
33 "//components/prefs", | 35 "//components/prefs", |
34 "//components/resources", | 36 "//components/resources", |
35 "//components/ssl_errors", | 37 "//components/ssl_errors", |
36 "//components/strings", | 38 "//components/strings", |
37 "//components/url_formatter", | 39 "//components/url_formatter", |
38 "//net", | 40 "//net", |
39 "//ui/base", | 41 "//ui/base", |
40 ] | 42 ] |
41 } | 43 } |
OLD | NEW |