| 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 "chrome_identity.h", | 7 "chrome_identity.h", |
| 8 "chrome_identity.mm", | 8 "chrome_identity.mm", |
| 9 "chrome_identity_browser_opener.h", | 9 "chrome_identity_browser_opener.h", |
| 10 "chrome_identity_interaction_manager.h", | 10 "chrome_identity_interaction_manager.h", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 "fake_chrome_identity.h", | 27 "fake_chrome_identity.h", |
| 28 "fake_chrome_identity.mm", | 28 "fake_chrome_identity.mm", |
| 29 "fake_chrome_identity_interaction_manager.h", | 29 "fake_chrome_identity_interaction_manager.h", |
| 30 "fake_chrome_identity_interaction_manager.mm", | 30 "fake_chrome_identity_interaction_manager.mm", |
| 31 "fake_chrome_identity_service.h", | 31 "fake_chrome_identity_service.h", |
| 32 "fake_chrome_identity_service.mm", | 32 "fake_chrome_identity_service.mm", |
| 33 "test_signin_resources_provider.h", | 33 "test_signin_resources_provider.h", |
| 34 "test_signin_resources_provider.mm", | 34 "test_signin_resources_provider.mm", |
| 35 ] | 35 ] |
| 36 deps = [ | 36 deps = [ |
| 37 ":signin", |
| 37 "//base", | 38 "//base", |
| 38 "//google_apis", | 39 "//google_apis", |
| 39 "//ios/public/provider/chrome/browser", | 40 "//ios/public/provider/chrome/browser", |
| 40 "//ios/public/provider/chrome/browser/signin", | |
| 41 ] | 41 ] |
| 42 public_deps = [ | 42 public_deps = [ |
| 43 "//testing/gmock", | 43 "//testing/gmock", |
| 44 ] | 44 ] |
| 45 } | 45 } |
| OLD | NEW |