| 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", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 "ssl_error_ui.h", | 22 "ssl_error_ui.h", |
| 23 ] | 23 ] |
| 24 | 24 |
| 25 deps = [ | 25 deps = [ |
| 26 "//base", | 26 "//base", |
| 27 "//base:i18n", | 27 "//base:i18n", |
| 28 "//components/google/core/browser", | 28 "//components/google/core/browser", |
| 29 "//components/history/core/browser", | 29 "//components/history/core/browser", |
| 30 "//components/metrics", | 30 "//components/metrics", |
| 31 "//components/prefs", | 31 "//components/prefs", |
| 32 "//components/resources", |
| 32 "//components/ssl_errors", | 33 "//components/ssl_errors", |
| 33 "//components/strings", | 34 "//components/strings", |
| 34 "//components/url_formatter", | 35 "//components/url_formatter", |
| 35 "//net", | 36 "//net", |
| 36 "//ui/base", | 37 "//ui/base", |
| 37 ] | 38 ] |
| 38 } | 39 } |
| OLD | NEW |