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

Side by Side Diff: ios/web/BUILD.gn

Issue 2375023006: [ARC] Converts part of ios/web/public to ARC. (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « no previous file | ios/web/web_state/blocked_popup_info.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 import("//ios/build/config.gni") 5 import("//ios/build/config.gni")
6 import("//ios/web/js_compile.gni") 6 import("//ios/web/js_compile.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 import("//tools/grit/grit_rule.gni") 8 import("//tools/grit/grit_rule.gni")
9 9
10 source_set("web_arc") { 10 source_set("web_arc") {
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 "public/web_state/js/crw_js_injection_receiver.h", 142 "public/web_state/js/crw_js_injection_receiver.h",
143 "public/web_state/page_display_state.h", 143 "public/web_state/page_display_state.h",
144 "public/web_state/page_display_state.mm", 144 "public/web_state/page_display_state.mm",
145 "public/web_state/ui/crw_content_view.h", 145 "public/web_state/ui/crw_content_view.h",
146 "public/web_state/ui/crw_generic_content_view.h", 146 "public/web_state/ui/crw_generic_content_view.h",
147 "public/web_state/ui/crw_native_content.h", 147 "public/web_state/ui/crw_native_content.h",
148 "public/web_state/ui/crw_native_content_provider.h", 148 "public/web_state/ui/crw_native_content_provider.h",
149 "public/web_state/ui/crw_web_delegate.h", 149 "public/web_state/ui/crw_web_delegate.h",
150 "public/web_state/ui/crw_web_view_content_view.h", 150 "public/web_state/ui/crw_web_view_content_view.h",
151 "public/web_state/url_verification_constants.h", 151 "public/web_state/url_verification_constants.h",
152 "public/web_state/web_state.h",
153 "public/web_state/web_state_delegate.h",
154 "public/web_state/web_state_delegate_bridge.h",
155 "public/web_state/web_state_observer.h",
156 "public/web_state/web_state_observer_bridge.h",
157 "public/web_state/web_state_policy_decider.h",
158 "public/web_state/web_state_user_data.h",
159 "public/web_thread.h",
160 "public/web_thread_delegate.h",
161 "public/web_ui_ios_data_source.h",
162 "public/web_view_creation_util.h",
163 "public/webui/web_ui_ios.h",
164 "public/webui/web_ui_ios_controller.cc",
165 "public/webui/web_ui_ios_controller.h",
166 "public/webui/web_ui_ios_controller_factory.h",
167 "public/webui/web_ui_ios_message_handler.cc",
168 "public/webui/web_ui_ios_message_handler.h",
152 "string_util.cc", 169 "string_util.cc",
153 "url_scheme_util.mm", 170 "url_scheme_util.mm",
154 "url_util.cc", 171 "url_util.cc",
155 "web_kit_constants.cc", 172 "web_kit_constants.cc",
173 "web_state/blocked_popup_info.h",
174 "web_state/blocked_popup_info.mm",
175 "web_state/context_menu_params.mm",
176 "web_state/credential.cc",
177 "web_state/crw_pass_kit_downloader.h",
178 "web_state/crw_pass_kit_downloader.mm",
156 "web_thread_impl.cc", 179 "web_thread_impl.cc",
157 "web_thread_impl.h", 180 "web_thread_impl.h",
158 "web_view_creation_util.mm", 181 "web_view_creation_util.mm",
159 "webui/crw_web_ui_manager.h", 182 "webui/crw_web_ui_manager.h",
160 "webui/crw_web_ui_manager.mm", 183 "webui/crw_web_ui_manager.mm",
161 "webui/crw_web_ui_page_builder.h", 184 "webui/crw_web_ui_page_builder.h",
162 "webui/crw_web_ui_page_builder.mm", 185 "webui/crw_web_ui_page_builder.mm",
163 "webui/mojo_facade.h", 186 "webui/mojo_facade.h",
164 "webui/mojo_facade.mm", 187 "webui/mojo_facade.mm",
165 "webui/mojo_js_constants.cc", 188 "webui/mojo_js_constants.cc",
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 "//ui/gfx/geometry:geometry", 230 "//ui/gfx/geometry:geometry",
208 "//ui/resources", 231 "//ui/resources",
209 "//url", 232 "//url",
210 ] 233 ]
211 234
212 public_deps = [ 235 public_deps = [
213 ":web_arc", 236 ":web_arc",
214 ] 237 ]
215 238
216 sources = [ 239 sources = [
217 "public/web_state/web_state.h",
218 "public/web_state/web_state_delegate.h",
219 "public/web_state/web_state_delegate_bridge.h",
220 "public/web_state/web_state_observer.h",
221 "public/web_state/web_state_observer_bridge.h",
222 "public/web_state/web_state_policy_decider.h",
223 "public/web_state/web_state_user_data.h",
224 "public/web_thread.h",
225 "public/web_thread_delegate.h",
226 "public/web_ui_ios_data_source.h",
227 "public/web_view_creation_util.h",
228 "public/webui/web_ui_ios.h",
229 "public/webui/web_ui_ios_controller.cc",
230 "public/webui/web_ui_ios_controller.h",
231 "public/webui/web_ui_ios_controller_factory.h",
232 "public/webui/web_ui_ios_message_handler.cc",
233 "public/webui/web_ui_ios_message_handler.h",
234 "web_state/blocked_popup_info.h",
235 "web_state/blocked_popup_info.mm",
236 "web_state/context_menu_params.mm",
237 "web_state/credential.cc",
238 "web_state/crw_pass_kit_downloader.h",
239 "web_state/crw_pass_kit_downloader.mm",
240 "web_state/crw_web_view_proxy_impl.h", 240 "web_state/crw_web_view_proxy_impl.h",
241 "web_state/crw_web_view_proxy_impl.mm", 241 "web_state/crw_web_view_proxy_impl.mm",
242 "web_state/crw_web_view_scroll_view_proxy.mm", 242 "web_state/crw_web_view_scroll_view_proxy.mm",
243 "web_state/error_translation_util.h", 243 "web_state/error_translation_util.h",
244 "web_state/error_translation_util.mm", 244 "web_state/error_translation_util.mm",
245 "web_state/global_web_state_event_tracker.h", 245 "web_state/global_web_state_event_tracker.h",
246 "web_state/global_web_state_event_tracker.mm", 246 "web_state/global_web_state_event_tracker.mm",
247 "web_state/global_web_state_observer.cc", 247 "web_state/global_web_state_observer.cc",
248 "web_state/js/credential_util.mm", 248 "web_state/js/credential_util.mm",
249 "web_state/js/crw_js_injection_manager.mm", 249 "web_state/js/crw_js_injection_manager.mm",
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after
607 } 607 }
608 608
609 grit("resources") { 609 grit("resources") {
610 source = "ios_web_resources.grd" 610 source = "ios_web_resources.grd"
611 use_qualified_include = true 611 use_qualified_include = true
612 outputs = [ 612 outputs = [
613 "grit/ios_web_resources.h", 613 "grit/ios_web_resources.h",
614 "ios_web_resources.pak", 614 "ios_web_resources.pak",
615 ] 615 ]
616 } 616 }
OLDNEW
« no previous file with comments | « no previous file | ios/web/web_state/blocked_popup_info.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698