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

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

Issue 2247303009: Converts ios/web/net to ARC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ios-web
Patch Set: Removes web_arc_transition temporary target Created 4 years, 4 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 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 "navigation/navigation_item_impl.h", 55 "navigation/navigation_item_impl.h",
56 "navigation/navigation_item_impl.mm", 56 "navigation/navigation_item_impl.mm",
57 "navigation/navigation_manager_delegate.h", 57 "navigation/navigation_manager_delegate.h",
58 "navigation/navigation_manager_facade_delegate.h", 58 "navigation/navigation_manager_facade_delegate.h",
59 "navigation/navigation_manager_impl.h", 59 "navigation/navigation_manager_impl.h",
60 "navigation/navigation_manager_impl.mm", 60 "navigation/navigation_manager_impl.mm",
61 "navigation/nscoder_util.h", 61 "navigation/nscoder_util.h",
62 "navigation/nscoder_util.mm", 62 "navigation/nscoder_util.mm",
63 "navigation/time_smoother.cc", 63 "navigation/time_smoother.cc",
64 "navigation/time_smoother.h", 64 "navigation/time_smoother.h",
65 "net/cert_host_pair.cc",
66 "net/cert_host_pair.h",
67 "net/cert_policy.cc",
68 "net/cert_store_impl.cc",
69 "net/cert_store_impl.h",
70 "net/certificate_policy_cache.cc",
71 "net/clients/crw_js_injection_network_client.h",
72 "net/clients/crw_js_injection_network_client.mm",
73 "net/clients/crw_js_injection_network_client_factory.h",
74 "net/clients/crw_js_injection_network_client_factory.mm",
75 "net/clients/crw_redirect_network_client.h",
76 "net/clients/crw_redirect_network_client.mm",
77 "net/clients/crw_redirect_network_client_factory.h",
78 "net/clients/crw_redirect_network_client_factory.mm",
79 "net/cookie_notification_bridge.h",
80 "net/cookie_notification_bridge.mm",
81 "net/crw_cert_verification_controller.h",
82 "net/crw_cert_verification_controller.mm",
83 "net/crw_request_tracker_delegate.h",
84 "net/crw_ssl_status_updater.h",
85 "net/crw_ssl_status_updater.mm",
86 "net/request_group_util.h",
87 "net/request_group_util.mm",
Eugene But (OOO till 7-30) 2016/08/19 16:34:50 This and all the files below are also request trac
88 "net/request_tracker_data_memoizing_store.h",
89 "net/request_tracker_factory_impl.h",
90 "net/request_tracker_factory_impl.mm",
91 "net/request_tracker_impl.h",
92 "net/request_tracker_impl.mm",
93 "net/web_http_protocol_handler_delegate.h",
94 "net/web_http_protocol_handler_delegate.mm",
65 "string_util.cc", 95 "string_util.cc",
66 "url_scheme_util.mm", 96 "url_scheme_util.mm",
67 "url_util.cc", 97 "url_util.cc",
68 "web_kit_constants.cc", 98 "web_kit_constants.cc",
69 "web_thread_impl.cc", 99 "web_thread_impl.cc",
70 "web_thread_impl.h", 100 "web_thread_impl.h",
71 "web_view_creation_util.mm", 101 "web_view_creation_util.mm",
72 ] 102 ]
73 103
74 libs = [ "WebKit.framework" ] 104 libs = [ "WebKit.framework" ]
(...skipping 20 matching lines...) Expand all
95 "//ui/gfx/geometry:geometry", 125 "//ui/gfx/geometry:geometry",
96 "//ui/resources", 126 "//ui/resources",
97 "//url", 127 "//url",
98 ] 128 ]
99 129
100 public_deps = [ 130 public_deps = [
101 ":web_arc", 131 ":web_arc",
102 ] 132 ]
103 133
104 sources = [ 134 sources = [
105 "net/cert_host_pair.cc",
106 "net/cert_host_pair.h",
107 "net/cert_policy.cc",
108 "net/cert_store_impl.cc",
109 "net/cert_store_impl.h",
110 "net/certificate_policy_cache.cc",
111 "net/clients/crw_js_injection_network_client.h",
112 "net/clients/crw_js_injection_network_client.mm",
113 "net/clients/crw_js_injection_network_client_factory.h",
114 "net/clients/crw_js_injection_network_client_factory.mm",
115 "net/clients/crw_redirect_network_client.h",
116 "net/clients/crw_redirect_network_client.mm",
117 "net/clients/crw_redirect_network_client_factory.h",
118 "net/clients/crw_redirect_network_client_factory.mm",
119 "net/cookie_notification_bridge.h",
120 "net/cookie_notification_bridge.mm",
121 "net/crw_cert_verification_controller.h",
122 "net/crw_cert_verification_controller.mm",
123 "net/crw_request_tracker_delegate.h",
124 "net/crw_ssl_status_updater.h",
125 "net/crw_ssl_status_updater.mm",
126 "net/request_group_util.h",
127 "net/request_group_util.mm",
128 "net/request_tracker_data_memoizing_store.h",
129 "net/request_tracker_factory_impl.h",
130 "net/request_tracker_factory_impl.mm",
131 "net/request_tracker_impl.h",
132 "net/request_tracker_impl.mm",
133 "net/web_http_protocol_handler_delegate.h",
134 "net/web_http_protocol_handler_delegate.mm",
135 "payments/payment_request.cc", 135 "payments/payment_request.cc",
136 "public/active_state_manager.h", 136 "public/active_state_manager.h",
137 "public/block_types.h", 137 "public/block_types.h",
138 "public/browser_state.h", 138 "public/browser_state.h",
139 "public/browser_url_rewriter.h", 139 "public/browser_url_rewriter.h",
140 "public/cert_policy.h", 140 "public/cert_policy.h",
141 "public/cert_store.h", 141 "public/cert_store.h",
142 "public/certificate_policy_cache.h", 142 "public/certificate_policy_cache.h",
143 "public/favicon_status.cc", 143 "public/favicon_status.cc",
144 "public/favicon_status.h", 144 "public/favicon_status.h",
(...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after
600 } 600 }
601 601
602 grit("resources") { 602 grit("resources") {
603 source = "ios_web_resources.grd" 603 source = "ios_web_resources.grd"
604 use_qualified_include = true 604 use_qualified_include = true
605 outputs = [ 605 outputs = [
606 "grit/ios_web_resources.h", 606 "grit/ios_web_resources.h",
607 "ios_web_resources.pak", 607 "ios_web_resources.pak",
608 ] 608 ]
609 } 609 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698