Chromium Code Reviews| 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 "about_signin_internals_factory.cc", | 7 "about_signin_internals_factory.cc", |
| 8 "about_signin_internals_factory.h", | 8 "about_signin_internals_factory.h", |
| 9 "account_consistency_service_factory.h", | 9 "account_consistency_service_factory.h", |
| 10 "account_consistency_service_factory.mm", | 10 "account_consistency_service_factory.mm", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 43 "signin_error_controller_factory.h", | 43 "signin_error_controller_factory.h", |
| 44 "signin_manager_factory.cc", | 44 "signin_manager_factory.cc", |
| 45 "signin_manager_factory.h", | 45 "signin_manager_factory.h", |
| 46 "signin_manager_factory_observer.h", | 46 "signin_manager_factory_observer.h", |
| 47 "signin_util.h", | 47 "signin_util.h", |
| 48 "signin_util.mm", | 48 "signin_util.mm", |
| 49 ] | 49 ] |
| 50 deps = [ | 50 deps = [ |
| 51 "//components/browser_sync", | 51 "//components/browser_sync", |
| 52 "//components/sync", | 52 "//components/sync", |
| 53 "//ios/chrome/browser:browser_no_public_deps", | |
|
rohitrao (ping after 24h)
2016/10/25 19:48:53
Why didn't we need any of these deps before? Were
sdefresne
2016/10/25 21:10:23
Yes, they were part of //ios/chrome/browser and //
| |
| 54 "//ios/chrome/browser/bookmarks:bookmarks_utils", | |
| 55 "//ios/chrome/browser/browser_state", | |
| 56 "//ios/chrome/browser/content_settings", | |
| 57 "//ios/chrome/browser/crash_report", | |
| 58 "//ios/chrome/browser/ui/commands", | |
| 53 "//ios/web", | 59 "//ios/web", |
| 54 "//url", | 60 "//url", |
| 55 ] | 61 ] |
| 56 public_deps = [ | 62 public_deps = [ |
| 57 "//base", | 63 "//base", |
| 58 "//components/content_settings/core/browser", | 64 "//components/content_settings/core/browser", |
| 59 "//components/keyed_service/core", | 65 "//components/keyed_service/core", |
| 60 "//components/keyed_service/ios", | 66 "//components/keyed_service/ios", |
| 61 "//components/metrics", | 67 "//components/metrics", |
| 62 "//components/pref_registry", | 68 "//components/pref_registry", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 108 "//components/prefs", | 114 "//components/prefs", |
| 109 "//components/signin/core/browser", | 115 "//components/signin/core/browser", |
| 110 "//components/signin/core/browser:test_support", | 116 "//components/signin/core/browser:test_support", |
| 111 "//components/signin/core/common", | 117 "//components/signin/core/common", |
| 112 "//components/signin/ios/browser", | 118 "//components/signin/ios/browser", |
| 113 "//components/syncable_prefs", | 119 "//components/syncable_prefs", |
| 114 "//components/syncable_prefs:test_support", | 120 "//components/syncable_prefs:test_support", |
| 115 "//google_apis", | 121 "//google_apis", |
| 116 "//ios/chrome/browser", | 122 "//ios/chrome/browser", |
| 117 "//ios/chrome/browser:test_support", | 123 "//ios/chrome/browser:test_support", |
| 118 "//ios/chrome/test", | 124 "//ios/chrome/test:test_support", |
| 119 "//ios/public/provider/chrome/browser", | 125 "//ios/public/provider/chrome/browser", |
| 120 "//ios/public/provider/chrome/browser:test_support", | 126 "//ios/public/provider/chrome/browser:test_support", |
| 121 "//ios/web:test_support", | 127 "//ios/web:test_support", |
| 122 "//net:test_support", | 128 "//net:test_support", |
| 123 "//testing/gmock", | 129 "//testing/gmock", |
| 124 "//testing/gtest", | 130 "//testing/gtest", |
| 125 "//third_party/ocmock", | 131 "//third_party/ocmock", |
| 126 ] | 132 ] |
| 127 } | 133 } |
| OLD | NEW |