| 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 sources = [ | 6 sources = [ |
| 7 "about_signin_internals_factory.cc", | 7 "about_signin_internals_factory.cc", |
| 8 "about_signin_internals_factory.h", | 8 "about_signin_internals_factory.h", |
| 9 "account_consistency_service_factory.h", | 9 "account_consistency_service_factory.h", |
| 10 "account_consistency_service_factory.mm", | 10 "account_consistency_service_factory.mm", |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 "//third_party/ocmock", | 134 "//third_party/ocmock", |
| 135 ] | 135 ] |
| 136 } | 136 } |
| 137 | 137 |
| 138 source_set("signin_internal") { | 138 source_set("signin_internal") { |
| 139 sources = [ | 139 sources = [ |
| 140 "signin_capability.cc", | 140 "signin_capability.cc", |
| 141 "signin_capability.h", | 141 "signin_capability.h", |
| 142 ] | 142 ] |
| 143 deps = [ | 143 deps = [ |
| 144 ":signin", |
| 144 "//base", | 145 "//base", |
| 145 "//components/signin/core/browser", | 146 "//components/signin/core/browser", |
| 146 "//ios/chrome/browser/browser_state", | 147 "//ios/chrome/browser/browser_state", |
| 147 "//ios/chrome/browser/signin", | |
| 148 ] | 148 ] |
| 149 } | 149 } |
| OLD | NEW |