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

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

Issue 2813223002: [ObjC ARC] Converts ios/chrome/browser/ui/settings:settings to ARC. (Closed)
Patch Set: rebase 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 bundle_data("resources") { 5 bundle_data("resources") {
6 sources = [ 6 sources = [
7 "resources/app_icon_placeholder.png", 7 "resources/app_icon_placeholder.png",
8 "resources/app_icon_placeholder@2x.png", 8 "resources/app_icon_placeholder@2x.png",
9 "resources/app_icon_placeholder@3x.png", 9 "resources/app_icon_placeholder@3x.png",
10 "resources/encryption_error.png", 10 "resources/encryption_error.png",
11 "resources/encryption_error@2x.png", 11 "resources/encryption_error@2x.png",
12 "resources/encryption_error@3x.png", 12 "resources/encryption_error@3x.png",
13 "resources/settings_accounts_add_account.png", 13 "resources/settings_accounts_add_account.png",
14 "resources/settings_accounts_add_account@2x.png", 14 "resources/settings_accounts_add_account@2x.png",
15 "resources/settings_accounts_add_account@3x.png", 15 "resources/settings_accounts_add_account@3x.png",
16 "resources/settings_error.png", 16 "resources/settings_error.png",
17 "resources/settings_error@2x.png", 17 "resources/settings_error@2x.png",
18 "resources/settings_error@3x.png", 18 "resources/settings_error@3x.png",
19 "resources/settings_sync.png", 19 "resources/settings_sync.png",
20 "resources/settings_sync@2x.png", 20 "resources/settings_sync@2x.png",
21 "resources/settings_sync@3x.png", 21 "resources/settings_sync@3x.png",
22 ] 22 ]
23 outputs = [ 23 outputs = [
24 "{{bundle_resources_dir}}/{{source_file_part}}", 24 "{{bundle_resources_dir}}/{{source_file_part}}",
25 ] 25 ]
26 } 26 }
27 27
28 source_set("settings_arc") { 28 source_set("settings") {
29 configs += [ "//build/config/compiler:enable_arc" ] 29 configs += [ "//build/config/compiler:enable_arc" ]
30 sources = [ 30 sources = [
31 "about_chrome_collection_view_controller.h", 31 "about_chrome_collection_view_controller.h",
32 "about_chrome_collection_view_controller.mm", 32 "about_chrome_collection_view_controller.mm",
33 "accounts_collection_view_controller.h", 33 "accounts_collection_view_controller.h",
34 "accounts_collection_view_controller.mm", 34 "accounts_collection_view_controller.mm",
35 "autofill_collection_view_controller.h", 35 "autofill_collection_view_controller.h",
36 "autofill_collection_view_controller.mm", 36 "autofill_collection_view_controller.mm",
37 "autofill_credit_card_edit_collection_view_controller.h", 37 "autofill_credit_card_edit_collection_view_controller.h",
38 "autofill_credit_card_edit_collection_view_controller.mm", 38 "autofill_credit_card_edit_collection_view_controller.mm",
(...skipping 24 matching lines...) Expand all
63 "import_data_collection_view_controller.mm", 63 "import_data_collection_view_controller.mm",
64 "material_cell_catalog_view_controller.h", 64 "material_cell_catalog_view_controller.h",
65 "material_cell_catalog_view_controller.mm", 65 "material_cell_catalog_view_controller.mm",
66 "native_apps_collection_view_controller.h", 66 "native_apps_collection_view_controller.h",
67 "native_apps_collection_view_controller.mm", 67 "native_apps_collection_view_controller.mm",
68 "native_apps_collection_view_controller_private.h", 68 "native_apps_collection_view_controller_private.h",
69 "password_details_collection_view_controller.h", 69 "password_details_collection_view_controller.h",
70 "password_details_collection_view_controller.mm", 70 "password_details_collection_view_controller.mm",
71 "physical_web_collection_view_controller.h", 71 "physical_web_collection_view_controller.h",
72 "physical_web_collection_view_controller.mm", 72 "physical_web_collection_view_controller.mm",
73 ]
74 deps = [
75 ":resources",
76 "//base",
77 "//base:i18n",
78 "//components/autofill/core/browser",
79 "//components/autofill/core/common",
80 "//components/autofill/ios/browser",
81 "//components/browser_sync",
82 "//components/browsing_data/core",
83 "//components/content_settings/core/browser",
84 "//components/content_settings/core/common",
85 "//components/google/core/browser",
86 "//components/handoff",
87 "//components/history/core/browser",
88 "//components/image_fetcher/ios",
89 "//components/keyed_service/core",
90 "//components/metrics",
91 "//components/password_manager/core/browser",
92 "//components/password_manager/core/common",
93 "//components/physical_web/data_source",
94 "//components/prefs",
95 "//components/resources",
96 "//components/search_engines",
97 "//components/signin/core/browser",
98 "//components/signin/core/common",
99 "//components/signin/ios/browser",
100 "//components/strings",
101 "//components/sync",
102 "//components/translate/core/browser",
103 "//components/translate/core/common",
104 "//components/url_formatter",
105 "//components/version_info",
106 "//ios/chrome/app/strings",
107 "//ios/chrome/browser",
108 "//ios/chrome/browser/autofill",
109 "//ios/chrome/browser/autofill:autofill_internal",
110 "//ios/chrome/browser/browser_state",
111 "//ios/chrome/browser/browser_state:browser_state_impl",
112 "//ios/chrome/browser/browsing_data",
113 "//ios/chrome/browser/content_settings",
114 "//ios/chrome/browser/history",
115 "//ios/chrome/browser/native_app_launcher:native_app_launcher_internal",
116 "//ios/chrome/browser/passwords",
117 "//ios/chrome/browser/payments/cells",
118 "//ios/chrome/browser/physical_web",
119 "//ios/chrome/browser/prefs",
120 "//ios/chrome/browser/search_engines",
121 "//ios/chrome/browser/signin",
122 "//ios/chrome/browser/store_kit",
123 "//ios/chrome/browser/sync",
124 "//ios/chrome/browser/translate",
125 "//ios/chrome/browser/ui",
126 "//ios/chrome/browser/ui/alert_coordinator",
127 "//ios/chrome/browser/ui/authentication",
128 "//ios/chrome/browser/ui/authentication:authentication_arc",
129 "//ios/chrome/browser/ui/authentication:authentication_ui",
130 "//ios/chrome/browser/ui/autofill",
131 "//ios/chrome/browser/ui/autofill:autofill_ui",
132 "//ios/chrome/browser/ui/autofill/cells",
133 "//ios/chrome/browser/ui/collection_view",
134 "//ios/chrome/browser/ui/colors",
135 "//ios/chrome/browser/ui/commands",
136 "//ios/chrome/browser/ui/content_suggestions/cells",
137 "//ios/chrome/browser/ui/contextual_search",
138 "//ios/chrome/browser/ui/icons",
139 "//ios/chrome/browser/ui/keyboard",
140 "//ios/chrome/browser/ui/material_components",
141 "//ios/chrome/browser/ui/settings/cells",
142 "//ios/chrome/browser/ui/settings/utils",
143 "//ios/chrome/browser/ui/sync",
144 "//ios/chrome/browser/voice",
145 "//ios/chrome/common",
146 "//ios/public/provider/chrome/browser",
147 "//ios/public/provider/chrome/browser/images",
148 "//ios/public/provider/chrome/browser/native_app_launcher",
149 "//ios/public/provider/chrome/browser/signin",
150 "//ios/public/provider/chrome/browser/user_feedback",
151 "//ios/public/provider/chrome/browser/voice",
152 "//ios/third_party/material_components_ios",
153 "//ios/third_party/material_roboto_font_loader_ios",
154 "//ios/web",
155 "//net",
156 "//ui/base",
157 "//url",
158 ]
159 public_deps = [
160 "//ios/chrome/browser/ui/collection_view/cells",
161 ]
162 allow_circular_includes_from = [ "//ios/chrome/browser/ui/authentication" ]
163 libs = [
164 "CoreLocation.framework",
165 "LocalAuthentication.framework",
166 "StoreKit.framework",
167 "UIKit.framework",
168 ]
169 }
170
171 source_set("settings") {
172 sources = [
173 "privacy_collection_view_controller.h", 73 "privacy_collection_view_controller.h",
174 "privacy_collection_view_controller.mm", 74 "privacy_collection_view_controller.mm",
175 "reauthentication_module.h", 75 "reauthentication_module.h",
176 "reauthentication_module.mm", 76 "reauthentication_module.mm",
177 "reauthentication_protocol.h", 77 "reauthentication_protocol.h",
178 "save_passwords_collection_view_controller.h", 78 "save_passwords_collection_view_controller.h",
179 "save_passwords_collection_view_controller.mm", 79 "save_passwords_collection_view_controller.mm",
180 "search_engine_settings_collection_view_controller.h", 80 "search_engine_settings_collection_view_controller.h",
181 "search_engine_settings_collection_view_controller.mm", 81 "search_engine_settings_collection_view_controller.mm",
182 "settings_collection_view_controller.h", 82 "settings_collection_view_controller.h",
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 "//ios/public/provider/chrome/browser/user_feedback", 181 "//ios/public/provider/chrome/browser/user_feedback",
282 "//ios/public/provider/chrome/browser/voice", 182 "//ios/public/provider/chrome/browser/voice",
283 "//ios/third_party/material_components_ios", 183 "//ios/third_party/material_components_ios",
284 "//ios/third_party/material_roboto_font_loader_ios", 184 "//ios/third_party/material_roboto_font_loader_ios",
285 "//ios/web", 185 "//ios/web",
286 "//net", 186 "//net",
287 "//ui/base", 187 "//ui/base",
288 "//url", 188 "//url",
289 ] 189 ]
290 public_deps = [ 190 public_deps = [
291 ":settings_arc",
292 "//ios/chrome/browser/ui/collection_view/cells", 191 "//ios/chrome/browser/ui/collection_view/cells",
293 ] 192 ]
294 allow_circular_includes_from = [ 193 allow_circular_includes_from = [ "//ios/chrome/browser/ui/authentication" ]
295 "//ios/chrome/browser/ui/authentication",
296 ":settings_arc",
297 ]
298 libs = [ 194 libs = [
299 "CoreLocation.framework", 195 "CoreLocation.framework",
300 "LocalAuthentication.framework", 196 "LocalAuthentication.framework",
301 "StoreKit.framework", 197 "StoreKit.framework",
302 "UIKit.framework", 198 "UIKit.framework",
303 ] 199 ]
304 } 200 }
305 201
306 source_set("test_support") { 202 source_set("test_support") {
307 testonly = true 203 testonly = true
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 "//ios/web:test_support", 374 "//ios/web:test_support",
479 "//net", 375 "//net",
480 "//ui/base", 376 "//ui/base",
481 "//url", 377 "//url",
482 ] 378 ]
483 libs = [ 379 libs = [
484 "UIKit.framework", 380 "UIKit.framework",
485 "XCTest.framework", 381 "XCTest.framework",
486 ] 382 ]
487 } 383 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698