Chromium Code Reviews| 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", |
| 11 "favicon_driver.h", | 11 "favicon_driver.h", |
| 12 "favicon_driver_impl.cc", | 12 "favicon_driver_impl.cc", |
| 13 "favicon_driver_impl.h", | 13 "favicon_driver_impl.h", |
| 14 "favicon_driver_observer.h", | 14 "favicon_driver_observer.h", |
| 15 "favicon_handler.cc", | 15 "favicon_handler.cc", |
| 16 "favicon_handler.h", | 16 "favicon_handler.h", |
| 17 "favicon_service.cc", | 17 "favicon_service.cc", |
| 18 "favicon_service.h", | 18 "favicon_service.h", |
| 19 "favicon_service_impl.cc", | 19 "favicon_service_impl.cc", |
| 20 "favicon_service_impl.h", | 20 "favicon_service_impl.h", |
| 21 "favicon_url.cc", | 21 "favicon_url.cc", |
| 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 public_deps = [ | |
|
sdefresne
2017/03/23 10:24:41
I don't think this whole public_deps is correct. I
mastiz
2017/03/23 12:03:23
Done.
Although not many, there are certainly exam
| |
| 30 "//base", | |
| 31 "//components/favicon_base", | |
| 32 "//components/image_fetcher/core", | |
| 33 "//components/keyed_service/core", | |
| 34 ] | |
| 35 | |
| 29 deps = [ | 36 deps = [ |
| 30 "//base", | |
| 31 "//base:i18n", | 37 "//base:i18n", |
| 32 "//components/bookmarks/browser", | 38 "//components/bookmarks/browser", |
| 33 "//components/favicon_base", | 39 "//components/data_use_measurement/core", |
| 34 "//components/history/core/browser", | 40 "//components/history/core/browser", |
| 35 "//components/keyed_service/core", | |
| 36 "//net:net", | 41 "//net:net", |
| 37 "//skia", | 42 "//skia", |
| 38 "//ui/base", | 43 "//ui/base", |
| 39 "//ui/gfx", | 44 "//ui/gfx", |
| 40 "//url", | 45 "//url", |
| 41 ] | 46 ] |
| 42 if (!is_ios) { | 47 if (!is_ios) { |
| 43 deps += [ "//cc/paint" ] | 48 deps += [ "//cc/paint" ] |
| 44 sources += [ | 49 sources += [ |
| 45 "fallback_icon_client.h", | 50 "fallback_icon_client.h", |
| (...skipping 13 matching lines...) Expand all Loading... | |
| 59 ] | 64 ] |
| 60 | 65 |
| 61 deps = [ | 66 deps = [ |
| 62 ":core", | 67 ":core", |
| 63 "//base", | 68 "//base", |
| 64 "//base/test:test_support", | 69 "//base/test:test_support", |
| 65 "//components/favicon/core/test:test_support", | 70 "//components/favicon/core/test:test_support", |
| 66 "//components/favicon_base", | 71 "//components/favicon_base", |
| 67 "//components/history/core/browser:browser", | 72 "//components/history/core/browser:browser", |
| 68 "//components/history/core/test:test", | 73 "//components/history/core/test:test", |
| 74 "//components/image_fetcher/core", | |
| 69 "//skia", | 75 "//skia", |
| 70 "//testing/gmock", | 76 "//testing/gmock", |
| 71 "//testing/gtest", | 77 "//testing/gtest", |
| 72 "//ui/base", | 78 "//ui/base", |
| 73 "//ui/gfx", | 79 "//ui/gfx", |
| 74 "//ui/gfx:test_support", | 80 "//ui/gfx:test_support", |
| 75 "//url", | 81 "//url", |
| 76 ] | 82 ] |
| 77 } | 83 } |
| OLD | NEW |