| 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 13 matching lines...) Expand all Loading... |
| 24 "favicon_util.h", | 24 "favicon_util.h", |
| 25 "features.cc", | 25 "features.cc", |
| 26 "features.h", | 26 "features.h", |
| 27 "large_icon_service.cc", | 27 "large_icon_service.cc", |
| 28 "large_icon_service.h", | 28 "large_icon_service.h", |
| 29 ] | 29 ] |
| 30 | 30 |
| 31 deps = [ | 31 deps = [ |
| 32 "//base", | 32 "//base", |
| 33 "//base:i18n", | 33 "//base:i18n", |
| 34 "//components/bookmarks/browser", | |
| 35 "//components/data_use_measurement/core", | 34 "//components/data_use_measurement/core", |
| 36 "//components/favicon_base", | 35 "//components/favicon_base", |
| 37 "//components/history/core/browser", | 36 "//components/history/core/browser", |
| 38 "//components/image_fetcher/core", | 37 "//components/image_fetcher/core", |
| 39 "//components/keyed_service/core", | 38 "//components/keyed_service/core", |
| 40 "//net:net", | 39 "//net:net", |
| 41 "//skia", | 40 "//skia", |
| 42 "//ui/base", | 41 "//ui/base", |
| 43 "//ui/gfx", | 42 "//ui/gfx", |
| 44 "//url", | 43 "//url", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 67 "//net:test_support", | 66 "//net:test_support", |
| 68 "//skia", | 67 "//skia", |
| 69 "//testing/gmock", | 68 "//testing/gmock", |
| 70 "//testing/gtest", | 69 "//testing/gtest", |
| 71 "//ui/base", | 70 "//ui/base", |
| 72 "//ui/gfx", | 71 "//ui/gfx", |
| 73 "//ui/gfx:test_support", | 72 "//ui/gfx:test_support", |
| 74 "//url", | 73 "//url", |
| 75 ] | 74 ] |
| 76 } | 75 } |
| OLD | NEW |