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

Side by Side Diff: ios/chrome/browser/ui/webui/BUILD.gn

Issue 2609363003: Remove ChromeBrowserProvider::GetFaviconForURL(). (Closed)
Patch Set: Created 3 years, 11 months 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
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 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 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 source_set("webui") { 5 source_set("webui") {
6 configs += [ "//build/config/compiler:enable_arc" ] 6 configs += [ "//build/config/compiler:enable_arc" ]
7 sources = [ 7 sources = [
8 "about_ui.cc", 8 "about_ui.cc",
9 "about_ui.h", 9 "about_ui.h",
10 "crashes_ui.cc", 10 "crashes_ui.cc",
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 ] 66 ]
67 deps = [ 67 deps = [
68 "//base", 68 "//base",
69 "//components/favicon/core", 69 "//components/favicon/core",
70 "//components/favicon_base", 70 "//components/favicon_base",
71 "//components/resources", 71 "//components/resources",
72 "//components/signin/core/browser", 72 "//components/signin/core/browser",
73 "//ios/chrome/app/resources:ios_resources", 73 "//ios/chrome/app/resources:ios_resources",
74 "//ios/chrome/browser", 74 "//ios/chrome/browser",
75 "//ios/chrome/browser/browser_state", 75 "//ios/chrome/browser/browser_state",
76 "//ios/chrome/browser/favicon",
76 "//ios/chrome/browser/omaha", 77 "//ios/chrome/browser/omaha",
77 "//ios/chrome/browser/signin", 78 "//ios/chrome/browser/signin",
78 "//ios/chrome/browser/ui/webui", 79 "//ios/chrome/browser/ui/webui",
79 "//ios/chrome/browser/ui/webui/gcm", 80 "//ios/chrome/browser/ui/webui/gcm",
80 "//ios/chrome/browser/ui/webui/net_export", 81 "//ios/chrome/browser/ui/webui/net_export",
81 "//ios/chrome/browser/ui/webui/sync_internals", 82 "//ios/chrome/browser/ui/webui/sync_internals",
82 "//ios/web", 83 "//ios/web",
83 "//ui/base", 84 "//ui/base",
84 "//ui/gfx", 85 "//ui/gfx",
85 "//url", 86 "//url",
86 ] 87 ]
88 allow_circular_includes_from = [ "//ios/chrome/browser/favicon" ]
87 } 89 }
88 90
89 source_set("eg_tests") { 91 source_set("eg_tests") {
90 testonly = true 92 testonly = true
91 sources = [ 93 sources = [
92 "web_ui_egtest.mm", 94 "web_ui_egtest.mm",
93 ] 95 ]
94 deps = [ 96 deps = [
95 "//base", 97 "//base",
96 "//components/strings", 98 "//components/strings",
97 "//components/version_info", 99 "//components/version_info",
98 "//ios/chrome/browser", 100 "//ios/chrome/browser",
99 "//ios/chrome/browser/ui/omnibox:omnibox_internal", 101 "//ios/chrome/browser/ui/omnibox:omnibox_internal",
100 "//ios/chrome/test/app:test_support", 102 "//ios/chrome/test/app:test_support",
101 "//ios/chrome/test/earl_grey:test_support", 103 "//ios/chrome/test/earl_grey:test_support",
102 "//ios/testing:ios_test_support", 104 "//ios/testing:ios_test_support",
103 "//ios/web", 105 "//ios/web",
104 "//ui/base", 106 "//ui/base",
105 "//url", 107 "//url",
106 ] 108 ]
107 libs = [ "XCTest.framework" ] 109 libs = [ "XCTest.framework" ]
108 } 110 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698