| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 | 6 |
| 7 source_set("browser") { | 7 source_set("browser") { |
| 8 sources = [ | 8 sources = [ |
| 9 "profile_sync_components_factory_impl.cc", | 9 "profile_sync_components_factory_impl.cc", |
| 10 "profile_sync_components_factory_impl.h", | 10 "profile_sync_components_factory_impl.h", |
| 11 "profile_sync_service.cc", | 11 "profile_sync_service.cc", |
| 12 "profile_sync_service.h", | 12 "profile_sync_service.h", |
| 13 "signin_confirmation_helper.cc", | 13 "signin_confirmation_helper.cc", |
| 14 "signin_confirmation_helper.h", | 14 "signin_confirmation_helper.h", |
| 15 ] | 15 ] |
| 16 | 16 |
| 17 public_deps = [ |
| 18 "//components/sync_driver", |
| 19 ] |
| 20 |
| 17 deps = [ | 21 deps = [ |
| 18 "//base", | 22 "//base", |
| 19 "//components/autofill/core/browser", | 23 "//components/autofill/core/browser", |
| 20 "//components/autofill/core/common", | 24 "//components/autofill/core/common", |
| 21 "//components/browser_sync/common", | 25 "//components/browser_sync/common", |
| 22 "//components/dom_distiller/core", | 26 "//components/dom_distiller/core", |
| 23 "//components/history/core/browser", | 27 "//components/history/core/browser", |
| 24 "//components/invalidation/impl", | 28 "//components/invalidation/impl", |
| 25 "//components/invalidation/public", | 29 "//components/invalidation/public", |
| 26 "//components/keyed_service/core", | 30 "//components/keyed_service/core", |
| 27 "//components/password_manager/core/browser", | 31 "//components/password_manager/core/browser", |
| 28 "//components/password_manager/sync/browser", | 32 "//components/password_manager/sync/browser", |
| 29 "//components/pref_registry", | 33 "//components/pref_registry", |
| 30 "//components/prefs", | 34 "//components/prefs", |
| 31 "//components/signin/core/browser", | 35 "//components/signin/core/browser", |
| 32 "//components/strings", | 36 "//components/strings", |
| 33 "//components/sync_bookmarks", | 37 "//components/sync_bookmarks", |
| 34 "//components/sync_driver", | |
| 35 "//components/sync_sessions", | 38 "//components/sync_sessions", |
| 36 "//components/syncable_prefs", | 39 "//components/syncable_prefs", |
| 37 "//components/variations", | 40 "//components/variations", |
| 38 "//components/version_info", | 41 "//components/version_info", |
| 39 "//components/version_info:generate_version_info", | 42 "//components/version_info:generate_version_info", |
| 40 "//google_apis", | 43 "//google_apis", |
| 41 "//net", | 44 "//net", |
| 42 "//sync", | 45 "//sync", |
| 43 "//ui/base", | 46 "//ui/base", |
| 44 ] | 47 ] |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 "//components/sync_driver:test_support", | 127 "//components/sync_driver:test_support", |
| 125 "//components/sync_sessions:test_support", | 128 "//components/sync_sessions:test_support", |
| 126 "//components/syncable_prefs:test_support", | 129 "//components/syncable_prefs:test_support", |
| 127 "//google_apis", | 130 "//google_apis", |
| 128 "//net:test_support", | 131 "//net:test_support", |
| 129 "//sync:test_support_sync_core", | 132 "//sync:test_support_sync_core", |
| 130 "//sync:test_support_sync_internal_api", | 133 "//sync:test_support_sync_internal_api", |
| 131 "//testing/gmock", | 134 "//testing/gmock", |
| 132 ] | 135 ] |
| 133 } | 136 } |
| OLD | NEW |