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

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

Issue 2936583002: [ObjC ARC] Converts ios/chrome/browser/ui/authentication:authentication to ARC. (Closed)
Patch Set: Review fixes. Created 3 years, 6 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 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 6
7 bundle_data("resources") { 7 bundle_data("resources") {
8 sources = [ 8 sources = [
9 "resources/signin_confirmation_more.png", 9 "resources/signin_confirmation_more.png",
10 "resources/signin_confirmation_more@2x.png", 10 "resources/signin_confirmation_more@2x.png",
(...skipping 14 matching lines...) Expand all
25 "resources/signin_promo_logo_chromium_color@2x.png", 25 "resources/signin_promo_logo_chromium_color@2x.png",
26 "resources/signin_promo_logo_chromium_color@3x.png", 26 "resources/signin_promo_logo_chromium_color@3x.png",
27 ] 27 ]
28 } 28 }
29 outputs = [ 29 outputs = [
30 "{{bundle_resources_dir}}/{{source_file_part}}", 30 "{{bundle_resources_dir}}/{{source_file_part}}",
31 ] 31 ]
32 } 32 }
33 33
34 source_set("authentication") { 34 source_set("authentication") {
35 configs += [ "//build/config/compiler:enable_arc" ]
35 sources = [ 36 sources = [
36 "authentication_flow.h", 37 "authentication_flow.h",
37 "authentication_flow.mm", 38 "authentication_flow.mm",
38 "authentication_flow_performer.h", 39 "authentication_flow_performer.h",
39 "authentication_flow_performer.mm", 40 "authentication_flow_performer.mm",
40 "authentication_flow_performer_delegate.h", 41 "authentication_flow_performer_delegate.h",
41 "authentication_ui_util.h", 42 "authentication_ui_util.h",
42 "authentication_ui_util.mm", 43 "authentication_ui_util.mm",
43 "chrome_signin_view_controller.h", 44 "chrome_signin_view_controller.h",
44 "chrome_signin_view_controller.mm", 45 "chrome_signin_view_controller.mm",
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 "//ios/chrome/browser/ui/tools_menu", 209 "//ios/chrome/browser/ui/tools_menu",
209 "//ios/chrome/test/app:test_support", 210 "//ios/chrome/test/app:test_support",
210 "//ios/chrome/test/earl_grey:test_support", 211 "//ios/chrome/test/earl_grey:test_support",
211 "//ios/public/provider/chrome/browser/signin:test_support", 212 "//ios/public/provider/chrome/browser/signin:test_support",
212 "//ios/testing:ios_test_support", 213 "//ios/testing:ios_test_support",
213 "//ios/testing/earl_grey:earl_grey_support", 214 "//ios/testing/earl_grey:earl_grey_support",
214 "//ios/third_party/earl_grey", 215 "//ios/third_party/earl_grey",
215 ] 216 ]
216 libs = [ "XCTest.framework" ] 217 libs = [ "XCTest.framework" ]
217 } 218 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698