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

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

Issue 2796793003: [ios] Adds a LocationBarController interface. (Closed)
Patch Set: Created 3 years, 8 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",
10 "web_omnibox_edit_controller.h",
11 ] 9 ]
12 deps = [ 10 deps = [
13 "//base", 11 "//base",
14 "//components/omnibox/browser", 12 "//components/omnibox/browser",
15 "//components/security_state/core", 13 "//components/security_state/core",
16 "//ios/chrome/app/theme", 14 "//ios/chrome/app/theme",
17 ] 15 ]
18 } 16 }
19 17
20 bundle_data("resources") { 18 bundle_data("resources") {
21 sources = [ 19 sources = [
22 "resources/omnibox_background.png", 20 "resources/omnibox_background.png",
23 "resources/omnibox_background@2x.png", 21 "resources/omnibox_background@2x.png",
24 "resources/omnibox_background@3x.png", 22 "resources/omnibox_background@3x.png",
25 "resources/omnibox_transparent_background.png", 23 "resources/omnibox_transparent_background.png",
26 "resources/omnibox_transparent_background@2x.png", 24 "resources/omnibox_transparent_background@2x.png",
27 "resources/omnibox_transparent_background@3x.png", 25 "resources/omnibox_transparent_background@3x.png",
28 ] 26 ]
29 outputs = [ 27 outputs = [
30 "{{bundle_resources_dir}}/{{source_file_part}}", 28 "{{bundle_resources_dir}}/{{source_file_part}}",
31 ] 29 ]
32 } 30 }
33 31
34 source_set("omnibox_internal") { 32 source_set("omnibox_internal") {
35 configs += [ "//build/config/compiler:enable_arc" ] 33 configs += [ "//build/config/compiler:enable_arc" ]
36 sources = [ 34 sources = [
37 "chrome_omnibox_client_ios.h", 35 "chrome_omnibox_client_ios.h",
38 "chrome_omnibox_client_ios.mm", 36 "chrome_omnibox_client_ios.mm",
39 "location_bar_view_ios.h", 37 "location_bar_controller_impl.h",
rohitrao (ping after 24h) 2017/04/04 13:38:18 This file will eventually move into ios/shared, bu
sdefresne 2017/04/04 13:58:16 Acknowledged.
40 "location_bar_view_ios.mm", 38 "location_bar_controller_impl.mm",
41 "omnibox_popup_material_row.h", 39 "omnibox_popup_material_row.h",
42 "omnibox_popup_material_row.mm", 40 "omnibox_popup_material_row.mm",
43 "omnibox_popup_material_view_controller.h", 41 "omnibox_popup_material_view_controller.h",
44 "omnibox_popup_material_view_controller.mm", 42 "omnibox_popup_material_view_controller.mm",
45 "omnibox_popup_positioner.h", 43 "omnibox_popup_positioner.h",
46 "omnibox_popup_view_ios.h", 44 "omnibox_popup_view_ios.h",
47 "omnibox_popup_view_ios.mm", 45 "omnibox_popup_view_ios.mm",
48 "omnibox_text_field_ios.h", 46 "omnibox_text_field_ios.h",
49 "omnibox_text_field_ios.mm", 47 "omnibox_text_field_ios.mm",
50 "omnibox_view_ios.h", 48 "omnibox_view_ios.h",
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 "//ios/chrome/browser/browser_state", 80 "//ios/chrome/browser/browser_state",
83 "//ios/chrome/browser/net", 81 "//ios/chrome/browser/net",
84 "//ios/chrome/browser/search_engines", 82 "//ios/chrome/browser/search_engines",
85 "//ios/chrome/browser/sessions", 83 "//ios/chrome/browser/sessions",
86 "//ios/chrome/browser/ui", 84 "//ios/chrome/browser/ui",
87 "//ios/chrome/browser/ui/commands", 85 "//ios/chrome/browser/ui/commands",
88 "//ios/chrome/browser/ui/fancy_ui", 86 "//ios/chrome/browser/ui/fancy_ui",
89 "//ios/chrome/browser/ui/popup_menu", 87 "//ios/chrome/browser/ui/popup_menu",
90 "//ios/chrome/common", 88 "//ios/chrome/common",
91 "//ios/public/provider/chrome/browser", 89 "//ios/public/provider/chrome/browser",
90 "//ios/shared/chrome/browser/ui/omnibox",
92 "//ios/third_party/material_components_ios", 91 "//ios/third_party/material_components_ios",
93 "//ios/third_party/material_roboto_font_loader_ios", 92 "//ios/third_party/material_roboto_font_loader_ios",
94 "//ios/web", 93 "//ios/web",
95 "//net", 94 "//net",
96 "//skia", 95 "//skia",
97 "//third_party/google_toolbox_for_mac", 96 "//third_party/google_toolbox_for_mac",
98 "//ui/base", 97 "//ui/base",
99 "//ui/gfx", 98 "//ui/gfx",
100 "//ui/gfx/geometry", 99 "//ui/gfx/geometry",
101 "//url", 100 "//url",
(...skipping 30 matching lines...) Expand all
132 visibility = [ ":unit_tests" ] 131 visibility = [ ":unit_tests" ]
133 testonly = true 132 testonly = true
134 sources = [ 133 sources = [
135 "//ios/chrome/test/data/omnibox/selected_ranges.txt", 134 "//ios/chrome/test/data/omnibox/selected_ranges.txt",
136 ] 135 ]
137 outputs = [ 136 outputs = [
138 "{{bundle_resources_dir}}/" + 137 "{{bundle_resources_dir}}/" +
139 "ios/chrome/test/data/omnibox/{{source_file_part}}", 138 "ios/chrome/test/data/omnibox/{{source_file_part}}",
140 ] 139 ]
141 } 140 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698