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 deps = [ | 17 deps = [ |
18 "//base", | 18 "//base", |
19 "//base:prefs", | |
20 "//components/autofill/core/browser", | 19 "//components/autofill/core/browser", |
21 "//components/autofill/core/common", | 20 "//components/autofill/core/common", |
22 "//components/browser_sync/common", | 21 "//components/browser_sync/common", |
23 "//components/dom_distiller/core", | 22 "//components/dom_distiller/core", |
24 "//components/history/core/browser", | 23 "//components/history/core/browser", |
25 "//components/invalidation/impl", | 24 "//components/invalidation/impl", |
26 "//components/invalidation/public", | 25 "//components/invalidation/public", |
27 "//components/keyed_service/core", | 26 "//components/keyed_service/core", |
28 "//components/password_manager/core/browser", | 27 "//components/password_manager/core/browser", |
29 "//components/password_manager/sync/browser", | 28 "//components/password_manager/sync/browser", |
30 "//components/pref_registry", | 29 "//components/pref_registry", |
| 30 "//components/prefs", |
31 "//components/signin/core/browser", | 31 "//components/signin/core/browser", |
32 "//components/strings", | 32 "//components/strings", |
33 "//components/sync_bookmarks", | 33 "//components/sync_bookmarks", |
34 "//components/sync_driver", | 34 "//components/sync_driver", |
35 "//components/sync_sessions", | 35 "//components/sync_sessions", |
36 "//components/syncable_prefs", | 36 "//components/syncable_prefs", |
37 "//components/variations", | 37 "//components/variations", |
38 "//components/version_info", | 38 "//components/version_info", |
39 "//components/version_info:generate_version_info", | 39 "//components/version_info:generate_version_info", |
40 "//google_apis", | 40 "//google_apis", |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 "//components/signin/core/browser:test_support", | 97 "//components/signin/core/browser:test_support", |
98 "//components/sync_driver", | 98 "//components/sync_driver", |
99 "//components/sync_driver:test_support", | 99 "//components/sync_driver:test_support", |
100 "//components/sync_sessions:test_support", | 100 "//components/sync_sessions:test_support", |
101 "//components/syncable_prefs:test_support", | 101 "//components/syncable_prefs:test_support", |
102 "//google_apis", | 102 "//google_apis", |
103 "//net:test_support", | 103 "//net:test_support", |
104 "//testing/gmock", | 104 "//testing/gmock", |
105 ] | 105 ] |
106 } | 106 } |
OLD | NEW |