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

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

Issue 2669173002: Use IOSImageDataFetcherWrapper (Closed)
Patch Set: Rebase Created 3 years, 10 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("omnibox") { 5 source_set("omnibox") {
6 sources = [ 6 sources = [
7 "omnibox_util.cc", 7 "omnibox_util.cc",
8 "omnibox_util.h", 8 "omnibox_util.h",
9 "web_omnibox_edit_controller.cc", 9 "web_omnibox_edit_controller.cc",
10 "web_omnibox_edit_controller.h", 10 "web_omnibox_edit_controller.h",
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 "preload_provider.h", 56 "preload_provider.h",
57 "truncating_attributed_label.h", 57 "truncating_attributed_label.h",
58 "truncating_attributed_label.mm", 58 "truncating_attributed_label.mm",
59 ] 59 ]
60 deps = [ 60 deps = [
61 ":omnibox", 61 ":omnibox",
62 ":resources", 62 ":resources",
63 "//base", 63 "//base",
64 "//base:i18n", 64 "//base:i18n",
65 "//components/favicon/ios", 65 "//components/favicon/ios",
66 "//components/image_fetcher/ios",
66 "//components/keyed_service/core", 67 "//components/keyed_service/core",
67 "//components/open_from_clipboard", 68 "//components/open_from_clipboard",
68 "//components/resources", 69 "//components/resources",
69 "//components/search_engines", 70 "//components/search_engines",
70 "//components/ssl_errors", 71 "//components/ssl_errors",
71 "//components/strings", 72 "//components/strings",
72 "//components/toolbar", 73 "//components/toolbar",
73 "//ios/chrome/app/strings", 74 "//ios/chrome/app/strings",
74 "//ios/chrome/app/theme", 75 "//ios/chrome/app/theme",
75 "//ios/chrome/browser", 76 "//ios/chrome/browser",
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 visibility = [ ":unit_tests" ] 131 visibility = [ ":unit_tests" ]
131 testonly = true 132 testonly = true
132 sources = [ 133 sources = [
133 "//ios/chrome/test/data/omnibox/selected_ranges.txt", 134 "//ios/chrome/test/data/omnibox/selected_ranges.txt",
134 ] 135 ]
135 outputs = [ 136 outputs = [
136 "{{bundle_resources_dir}}/" + 137 "{{bundle_resources_dir}}/" +
137 "ios/chrome/test/data/omnibox/{{source_file_part}}", 138 "ios/chrome/test/data/omnibox/{{source_file_part}}",
138 ] 139 ]
139 } 140 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698