Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(556)

Side by Side Diff: ios/chrome/browser/favicon/BUILD.gn

Issue 2443373002: Split //ios/chrome/browser in multiple targets. (Closed)
Patch Set: Rebase Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ios/chrome/browser/dom_distiller/BUILD.gn ('k') | ios/chrome/browser/find_in_page/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 source_set("favicon") {
6 sources = [
7 "favicon_attributes.h",
8 "favicon_attributes.mm",
9 "favicon_attributes_provider.h",
10 "favicon_attributes_provider.mm",
11 "favicon_client_impl.h",
12 "favicon_client_impl.mm",
13 "favicon_loader.h",
14 "favicon_loader.mm",
15 "favicon_service_factory.cc",
16 "favicon_service_factory.h",
17 "ios_chrome_favicon_loader_factory.h",
18 "ios_chrome_favicon_loader_factory.mm",
19 "ios_chrome_large_icon_cache_factory.cc",
20 "ios_chrome_large_icon_cache_factory.h",
21 "ios_chrome_large_icon_service_factory.cc",
22 "ios_chrome_large_icon_service_factory.h",
23 "large_icon_cache.cc",
24 "large_icon_cache.h",
25 ]
26 deps = [
27 "//base",
28 "//components/favicon/core",
29 "//components/favicon_base",
30 "//components/keyed_service/core",
31 "//components/keyed_service/ios",
32 "//ios/chrome/browser:browser_no_public_deps",
33 "//ios/chrome/browser/browser_state",
34 "//ios/chrome/browser/history",
35 "//ios/public/provider/chrome/browser",
36 "//ios/web",
37 "//skia",
38 "//ui/gfx",
39 "//url",
40 ]
41 }
42
43 source_set("unit_tests") {
44 testonly = true
45 sources = [
46 "large_icon_cache_unittest.cc",
47 ]
48 deps = [
49 ":favicon",
50 "//base",
51 "//components/favicon_base",
52 "//skia",
53 "//testing/gtest",
54 "//ui/gfx",
55 "//ui/gfx:test_support",
56 ]
57 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/dom_distiller/BUILD.gn ('k') | ios/chrome/browser/find_in_page/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698