| OLD | NEW |
| (Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 source_set("signin") { |
| 6 sources = [ |
| 7 "chrome_identity.h", |
| 8 "chrome_identity.mm", |
| 9 "chrome_identity_browser_opener.h", |
| 10 "chrome_identity_interaction_manager.h", |
| 11 "chrome_identity_interaction_manager.mm", |
| 12 "chrome_identity_service.h", |
| 13 "chrome_identity_service.mm", |
| 14 "signin_error_provider.h", |
| 15 "signin_error_provider.mm", |
| 16 "signin_resources_provider.h", |
| 17 "signin_resources_provider.mm", |
| 18 ] |
| 19 deps = [ |
| 20 "//base", |
| 21 ] |
| 22 } |
| 23 |
| 24 source_set("test_support") { |
| 25 testonly = true |
| 26 sources = [ |
| 27 "fake_chrome_identity.h", |
| 28 "fake_chrome_identity.mm", |
| 29 "fake_chrome_identity_interaction_manager.h", |
| 30 "fake_chrome_identity_interaction_manager.mm", |
| 31 "fake_chrome_identity_service.h", |
| 32 "fake_chrome_identity_service.mm", |
| 33 "test_signin_resources_provider.h", |
| 34 "test_signin_resources_provider.mm", |
| 35 ] |
| 36 deps = [ |
| 37 "//base", |
| 38 "//google_apis", |
| 39 "//ios/public/provider/chrome/browser", |
| 40 "//ios/public/provider/chrome/browser/signin", |
| 41 ] |
| 42 public_deps = [ |
| 43 "//testing/gmock", |
| 44 ] |
| 45 } |
| OLD | NEW |