| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 "fallback_icon_service.cc", | 45 "fallback_icon_service.cc", |
| 46 "fallback_icon_service.h", | 46 "fallback_icon_service.h", |
| 47 ] | 47 ] |
| 48 } | 48 } |
| 49 } | 49 } |
| 50 | 50 |
| 51 source_set("unit_tests") { | 51 source_set("unit_tests") { |
| 52 testonly = true | 52 testonly = true |
| 53 sources = [ | 53 sources = [ |
| 54 "fallback_url_util_unittest.cc", | 54 "fallback_url_util_unittest.cc", |
| 55 "favicon_driver_impl_unittest.cc", |
| 55 "favicon_handler_unittest.cc", | 56 "favicon_handler_unittest.cc", |
| 56 "favicon_service_impl_unittest.cc", | 57 "favicon_service_impl_unittest.cc", |
| 57 "large_icon_service_unittest.cc", | 58 "large_icon_service_unittest.cc", |
| 58 ] | 59 ] |
| 59 | 60 |
| 60 deps = [ | 61 deps = [ |
| 61 ":core", | 62 ":core", |
| 62 "//base", | 63 "//base", |
| 63 "//components/favicon/core/test:test_support", | 64 "//components/favicon/core/test:test_support", |
| 64 "//components/favicon_base", | 65 "//components/favicon_base", |
| 65 "//components/history/core/browser:browser", | 66 "//components/history/core/browser:browser", |
| 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 |