| OLD | NEW |
| 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 source_set("signin") { | 5 source_set("signin") { |
| 6 configs += [ "//build/config/compiler:enable_arc" ] |
| 6 sources = [ | 7 sources = [ |
| 7 "about_signin_internals_factory.cc", | 8 "about_signin_internals_factory.cc", |
| 8 "about_signin_internals_factory.h", | 9 "about_signin_internals_factory.h", |
| 9 "account_consistency_service_factory.h", | 10 "account_consistency_service_factory.h", |
| 10 "account_consistency_service_factory.mm", | 11 "account_consistency_service_factory.mm", |
| 11 "account_fetcher_service_factory.cc", | 12 "account_fetcher_service_factory.cc", |
| 12 "account_fetcher_service_factory.h", | 13 "account_fetcher_service_factory.h", |
| 13 "account_reconcilor_factory.cc", | 14 "account_reconcilor_factory.cc", |
| 14 "account_reconcilor_factory.h", | 15 "account_reconcilor_factory.h", |
| 15 "account_tracker_service_factory.cc", | 16 "account_tracker_service_factory.cc", |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 "signin_capability.cc", | 142 "signin_capability.cc", |
| 142 "signin_capability.h", | 143 "signin_capability.h", |
| 143 ] | 144 ] |
| 144 deps = [ | 145 deps = [ |
| 145 ":signin", | 146 ":signin", |
| 146 "//base", | 147 "//base", |
| 147 "//components/signin/core/browser", | 148 "//components/signin/core/browser", |
| 148 "//ios/chrome/browser/browser_state", | 149 "//ios/chrome/browser/browser_state", |
| 149 ] | 150 ] |
| 150 } | 151 } |
| OLD | NEW |