| 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", |
| 20 "safe_browsing_quiet_error_ui.h", |
| 19 "ssl_error_ui.cc", | 21 "ssl_error_ui.cc", |
| 20 "ssl_error_ui.h", | 22 "ssl_error_ui.h", |
| 21 ] | 23 ] |
| 22 | 24 |
| 23 deps = [ | 25 deps = [ |
| 24 "//base", | 26 "//base", |
| 25 "//base:i18n", | 27 "//base:i18n", |
| 26 "//components/google/core/browser", | 28 "//components/google/core/browser", |
| 27 "//components/history/core/browser", | 29 "//components/history/core/browser", |
| 28 "//components/metrics", | 30 "//components/metrics", |
| 29 "//components/prefs", | 31 "//components/prefs", |
| 30 "//components/ssl_errors", | 32 "//components/ssl_errors", |
| 31 "//components/strings", | 33 "//components/strings", |
| 32 "//components/url_formatter", | 34 "//components/url_formatter", |
| 33 "//net", | 35 "//net", |
| 34 "//ui/base", | 36 "//ui/base", |
| 35 ] | 37 ] |
| 36 } | 38 } |
| OLD | NEW |