| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 "fallback_url_util.cc", | 7 "fallback_url_util.cc", |
| 8 "fallback_url_util.h", | 8 "fallback_url_util.h", |
| 9 "favicon_client.h", | 9 "favicon_client.h", |
| 10 "favicon_driver.cc", | 10 "favicon_driver.cc", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 "favicon_url.h", | 22 "favicon_url.h", |
| 23 "favicon_util.cc", | 23 "favicon_util.cc", |
| 24 "favicon_util.h", | 24 "favicon_util.h", |
| 25 "large_icon_service.cc", | 25 "large_icon_service.cc", |
| 26 "large_icon_service.h", | 26 "large_icon_service.h", |
| 27 ] | 27 ] |
| 28 | 28 |
| 29 deps = [ | 29 deps = [ |
| 30 "//base", | 30 "//base", |
| 31 "//base:i18n", | 31 "//base:i18n", |
| 32 "//cc/paint", |
| 32 "//components/bookmarks/browser", | 33 "//components/bookmarks/browser", |
| 33 "//components/favicon_base", | 34 "//components/favicon_base", |
| 34 "//components/history/core/browser", | 35 "//components/history/core/browser", |
| 35 "//components/keyed_service/core", | 36 "//components/keyed_service/core", |
| 36 "//net:net", | 37 "//net:net", |
| 37 "//skia", | 38 "//skia", |
| 38 "//ui/base", | 39 "//ui/base", |
| 39 "//ui/gfx", | 40 "//ui/gfx", |
| 40 "//url", | 41 "//url", |
| 41 ] | 42 ] |
| (...skipping 24 matching lines...) Expand all Loading... |
| 66 "//components/history/core/test:test", | 67 "//components/history/core/test:test", |
| 67 "//skia", | 68 "//skia", |
| 68 "//testing/gmock", | 69 "//testing/gmock", |
| 69 "//testing/gtest", | 70 "//testing/gtest", |
| 70 "//ui/base", | 71 "//ui/base", |
| 71 "//ui/gfx", | 72 "//ui/gfx", |
| 72 "//ui/gfx:test_support", | 73 "//ui/gfx:test_support", |
| 73 "//url", | 74 "//url", |
| 74 ] | 75 ] |
| 75 } | 76 } |
| OLD | NEW |