| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("browser") { | 5 source_set("browser") { |
| 6 sources = [ | 6 sources = [ |
| 7 "account_consistency_service.h", | 7 "account_consistency_service.h", |
| 8 "account_consistency_service.mm", | 8 "account_consistency_service.mm", |
| 9 "manage_accounts_delegate.h", | 9 "manage_accounts_delegate.h", |
| 10 "merge_session_observer_bridge.h", | 10 "merge_session_observer_bridge.h", |
| 11 "merge_session_observer_bridge.mm", | 11 "merge_session_observer_bridge.mm", |
| 12 "oauth2_token_service_observer_bridge.h", | 12 "oauth2_token_service_observer_bridge.h", |
| 13 "oauth2_token_service_observer_bridge.mm", | 13 "oauth2_token_service_observer_bridge.mm", |
| 14 "profile_oauth2_token_service_ios_delegate.h", | 14 "profile_oauth2_token_service_ios_delegate.h", |
| 15 "profile_oauth2_token_service_ios_delegate.mm", | 15 "profile_oauth2_token_service_ios_delegate.mm", |
| 16 "profile_oauth2_token_service_ios_provider.h", | 16 "profile_oauth2_token_service_ios_provider.h", |
| 17 ] | 17 ] |
| 18 | 18 |
| 19 deps = [ | 19 deps = [ |
| 20 "//components/signin/core/browser", | |
| 21 "//ios/web", | 20 "//ios/web", |
| 21 "//signin/core/browser", |
| 22 ] | 22 ] |
| 23 } | 23 } |
| 24 | 24 |
| 25 source_set("test_support") { | 25 source_set("test_support") { |
| 26 testonly = true | 26 testonly = true |
| 27 sources = [ | 27 sources = [ |
| 28 "fake_profile_oauth2_token_service_ios_delegate.h", | 28 "fake_profile_oauth2_token_service_ios_delegate.h", |
| 29 "fake_profile_oauth2_token_service_ios_delegate.mm", | 29 "fake_profile_oauth2_token_service_ios_delegate.mm", |
| 30 "fake_profile_oauth2_token_service_ios_provider.h", | 30 "fake_profile_oauth2_token_service_ios_provider.h", |
| 31 "fake_profile_oauth2_token_service_ios_provider.mm", | 31 "fake_profile_oauth2_token_service_ios_provider.mm", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 44 "account_consistency_service_unittest.mm", | 44 "account_consistency_service_unittest.mm", |
| 45 "profile_oauth2_token_service_ios_delegate_unittest.mm", | 45 "profile_oauth2_token_service_ios_delegate_unittest.mm", |
| 46 ] | 46 ] |
| 47 | 47 |
| 48 deps = [ | 48 deps = [ |
| 49 ":test_support", | 49 ":test_support", |
| 50 "//ios/web", | 50 "//ios/web", |
| 51 "//third_party/ocmock", | 51 "//third_party/ocmock", |
| 52 ] | 52 ] |
| 53 } | 53 } |
| OLD | NEW |