| 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 "chrome_identity.h", | 8 "chrome_identity.h", |
| 8 "chrome_identity.mm", | 9 "chrome_identity.mm", |
| 9 "chrome_identity_browser_opener.h", | 10 "chrome_identity_browser_opener.h", |
| 10 "chrome_identity_interaction_manager.h", | 11 "chrome_identity_interaction_manager.h", |
| 11 "chrome_identity_interaction_manager.mm", | 12 "chrome_identity_interaction_manager.mm", |
| 12 "chrome_identity_service.h", | 13 "chrome_identity_service.h", |
| 13 "chrome_identity_service.mm", | 14 "chrome_identity_service.mm", |
| 14 "signin_error_provider.h", | 15 "signin_error_provider.h", |
| 15 "signin_error_provider.mm", | 16 "signin_error_provider.mm", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 36 deps = [ | 37 deps = [ |
| 37 ":signin", | 38 ":signin", |
| 38 "//base", | 39 "//base", |
| 39 "//google_apis", | 40 "//google_apis", |
| 40 "//ios/public/provider/chrome/browser", | 41 "//ios/public/provider/chrome/browser", |
| 41 ] | 42 ] |
| 42 public_deps = [ | 43 public_deps = [ |
| 43 "//testing/gmock", | 44 "//testing/gmock", |
| 44 ] | 45 ] |
| 45 } | 46 } |
| OLD | NEW |