| 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", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 ] | 41 ] |
| 42 | 42 |
| 43 public_deps = [ | 43 public_deps = [ |
| 44 ":browser", | 44 ":browser", |
| 45 "//base", | 45 "//base", |
| 46 "//google_apis:test_support", | 46 "//google_apis:test_support", |
| 47 ] | 47 ] |
| 48 } | 48 } |
| 49 | 49 |
| 50 source_set("unit_tests") { | 50 source_set("unit_tests") { |
| 51 configs += [ "//build/config/compiler:enable_arc" ] |
| 51 testonly = true | 52 testonly = true |
| 52 sources = [ | 53 sources = [ |
| 53 "account_consistency_service_unittest.mm", | 54 "account_consistency_service_unittest.mm", |
| 54 "profile_oauth2_token_service_ios_delegate_unittest.mm", | 55 "profile_oauth2_token_service_ios_delegate_unittest.mm", |
| 55 ] | 56 ] |
| 56 | 57 |
| 57 deps = [ | 58 deps = [ |
| 58 ":test_support", | 59 ":test_support", |
| 59 "//components/prefs:test_support", | 60 "//components/prefs:test_support", |
| 60 "//components/signin/core/browser", | 61 "//components/signin/core/browser", |
| 61 "//components/signin/core/browser:test_support", | 62 "//components/signin/core/browser:test_support", |
| 62 "//components/signin/core/common", | 63 "//components/signin/core/common", |
| 63 "//components/sync_preferences:test_support", | 64 "//components/sync_preferences:test_support", |
| 64 "//ios/web", | 65 "//ios/web", |
| 65 "//ios/web/public/test", | 66 "//ios/web/public/test", |
| 66 "//ios/web/public/test/fakes", | 67 "//ios/web/public/test/fakes", |
| 67 "//third_party/ocmock", | 68 "//third_party/ocmock", |
| 68 ] | 69 ] |
| 69 } | 70 } |
| OLD | NEW |