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

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

Issue 2432363003: [ObjC ARC] Converts parts of ios/web/webstate to ARC. (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 | « no previous file | ios/web/public/web_state/ui/crw_web_view_content_view.h » ('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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 "web_state/js/page_script_util.h", 196 "web_state/js/page_script_util.h",
197 "web_state/js/page_script_util.mm", 197 "web_state/js/page_script_util.mm",
198 "web_state/page_viewport_state.h", 198 "web_state/page_viewport_state.h",
199 "web_state/page_viewport_state.mm", 199 "web_state/page_viewport_state.mm",
200 "web_state/ui/crw_generic_content_view.mm", 200 "web_state/ui/crw_generic_content_view.mm",
201 "web_state/ui/crw_swipe_recognizer_provider.h", 201 "web_state/ui/crw_swipe_recognizer_provider.h",
202 "web_state/ui/crw_touch_tracking_recognizer.h", 202 "web_state/ui/crw_touch_tracking_recognizer.h",
203 "web_state/ui/crw_touch_tracking_recognizer.mm", 203 "web_state/ui/crw_touch_tracking_recognizer.mm",
204 "web_state/ui/crw_web_controller.h", 204 "web_state/ui/crw_web_controller.h",
205 "web_state/ui/crw_web_controller.mm", 205 "web_state/ui/crw_web_controller.mm",
206 "web_state/ui/crw_web_controller_container_view.h",
207 "web_state/ui/crw_web_controller_container_view.mm",
208 "web_state/ui/crw_web_view_content_view.mm",
209 "web_state/ui/crw_wk_script_message_router.h",
210 "web_state/ui/crw_wk_script_message_router.mm",
211 "web_state/ui/web_view_js_utils.h",
212 "web_state/ui/web_view_js_utils.mm",
213 "web_state/ui/wk_back_forward_list_item_holder.h",
214 "web_state/ui/wk_back_forward_list_item_holder.mm",
215 "web_state/ui/wk_web_view_configuration_provider.h",
216 "web_state/ui/wk_web_view_configuration_provider.mm",
217 "web_state/web_controller_observer_bridge.h",
218 "web_state/web_controller_observer_bridge.mm",
206 "web_thread_impl.cc", 219 "web_thread_impl.cc",
207 "web_thread_impl.h", 220 "web_thread_impl.h",
208 "web_view_creation_util.mm", 221 "web_view_creation_util.mm",
209 "webui/crw_web_ui_manager.h", 222 "webui/crw_web_ui_manager.h",
210 "webui/crw_web_ui_manager.mm", 223 "webui/crw_web_ui_manager.mm",
211 "webui/crw_web_ui_page_builder.h", 224 "webui/crw_web_ui_page_builder.h",
212 "webui/crw_web_ui_page_builder.mm", 225 "webui/crw_web_ui_page_builder.mm",
213 "webui/mojo_facade.h", 226 "webui/mojo_facade.h",
214 "webui/mojo_facade.mm", 227 "webui/mojo_facade.mm",
215 "webui/mojo_js_constants.cc", 228 "webui/mojo_js_constants.cc",
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 "//ui/gfx/geometry:geometry", 270 "//ui/gfx/geometry:geometry",
258 "//ui/resources", 271 "//ui/resources",
259 "//url", 272 "//url",
260 ] 273 ]
261 274
262 public_deps = [ 275 public_deps = [
263 ":web_arc", 276 ":web_arc",
264 ] 277 ]
265 278
266 sources = [ 279 sources = [
267 "web_state/ui/crw_web_controller_container_view.h",
268 "web_state/ui/crw_web_controller_container_view.mm",
269 "web_state/ui/crw_web_view_content_view.mm",
270 "web_state/ui/crw_wk_script_message_router.h",
271 "web_state/ui/crw_wk_script_message_router.mm",
272 "web_state/ui/web_view_js_utils.h",
273 "web_state/ui/web_view_js_utils.mm",
274 "web_state/ui/wk_back_forward_list_item_holder.h",
275 "web_state/ui/wk_back_forward_list_item_holder.mm",
276 "web_state/ui/wk_web_view_configuration_provider.h",
277 "web_state/ui/wk_web_view_configuration_provider.mm",
278 "web_state/web_controller_observer_bridge.h",
279 "web_state/web_controller_observer_bridge.mm",
280 "web_state/web_state.mm", 280 "web_state/web_state.mm",
281 "web_state/web_state_delegate.mm", 281 "web_state/web_state_delegate.mm",
282 "web_state/web_state_delegate_bridge.mm", 282 "web_state/web_state_delegate_bridge.mm",
283 "web_state/web_state_facade_delegate.h", 283 "web_state/web_state_facade_delegate.h",
284 "web_state/web_state_impl.h", 284 "web_state/web_state_impl.h",
285 "web_state/web_state_impl.mm", 285 "web_state/web_state_impl.mm",
286 "web_state/web_state_observer.mm", 286 "web_state/web_state_observer.mm",
287 "web_state/web_state_observer_bridge.mm", 287 "web_state/web_state_observer_bridge.mm",
288 "web_state/web_state_policy_decider.mm", 288 "web_state/web_state_policy_decider.mm",
289 "web_state/web_state_weak_ptr_factory.h", 289 "web_state/web_state_weak_ptr_factory.h",
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
611 } 611 }
612 612
613 grit("resources") { 613 grit("resources") {
614 source = "ios_web_resources.grd" 614 source = "ios_web_resources.grd"
615 use_qualified_include = true 615 use_qualified_include = true
616 outputs = [ 616 outputs = [
617 "grit/ios_web_resources.h", 617 "grit/ios_web_resources.h",
618 "ios_web_resources.pak", 618 "ios_web_resources.pak",
619 ] 619 ]
620 } 620 }
OLDNEW
« no previous file with comments | « no previous file | ios/web/public/web_state/ui/crw_web_view_content_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698