| 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 25 matching lines...) Expand all Loading... |
| 36 "//components/favicon_base", | 36 "//components/favicon_base", |
| 37 "//components/history/core/browser", | 37 "//components/history/core/browser", |
| 38 "//components/image_fetcher/core", | 38 "//components/image_fetcher/core", |
| 39 "//components/keyed_service/core", | 39 "//components/keyed_service/core", |
| 40 "//net:net", | 40 "//net:net", |
| 41 "//skia", | 41 "//skia", |
| 42 "//ui/base", | 42 "//ui/base", |
| 43 "//ui/gfx", | 43 "//ui/gfx", |
| 44 "//url", | 44 "//url", |
| 45 ] | 45 ] |
| 46 if (!is_ios) { | |
| 47 deps += [ "//cc/paint" ] | |
| 48 sources += [ | |
| 49 "fallback_icon_client.h", | |
| 50 "fallback_icon_service.cc", | |
| 51 "fallback_icon_service.h", | |
| 52 ] | |
| 53 } | |
| 54 } | 46 } |
| 55 | 47 |
| 56 source_set("unit_tests") { | 48 source_set("unit_tests") { |
| 57 testonly = true | 49 testonly = true |
| 58 sources = [ | 50 sources = [ |
| 59 "fallback_url_util_unittest.cc", | 51 "fallback_url_util_unittest.cc", |
| 60 "favicon_handler_unittest.cc", | 52 "favicon_handler_unittest.cc", |
| 61 "favicon_service_impl_unittest.cc", | 53 "favicon_service_impl_unittest.cc", |
| 62 "large_icon_service_unittest.cc", | 54 "large_icon_service_unittest.cc", |
| 63 ] | 55 ] |
| (...skipping 10 matching lines...) Expand all Loading... |
| 74 "//components/variations:test_support", | 66 "//components/variations:test_support", |
| 75 "//skia", | 67 "//skia", |
| 76 "//testing/gmock", | 68 "//testing/gmock", |
| 77 "//testing/gtest", | 69 "//testing/gtest", |
| 78 "//ui/base", | 70 "//ui/base", |
| 79 "//ui/gfx", | 71 "//ui/gfx", |
| 80 "//ui/gfx:test_support", | 72 "//ui/gfx:test_support", |
| 81 "//url", | 73 "//url", |
| 82 ] | 74 ] |
| 83 } | 75 } |
| OLD | NEW |