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", |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 "test_http_bridge_factory.cc", | 100 "test_http_bridge_factory.cc", |
101 "test_http_bridge_factory.h", | 101 "test_http_bridge_factory.h", |
102 "test_profile_sync_service.cc", | 102 "test_profile_sync_service.cc", |
103 "test_profile_sync_service.h", | 103 "test_profile_sync_service.h", |
104 ] | 104 ] |
105 | 105 |
106 deps = [ | 106 deps = [ |
107 ":browser", | 107 ":browser", |
108 "//base", | 108 "//base", |
109 "//base/test:test_support", | 109 "//base/test:test_support", |
| 110 "//components/bookmarks/browser:browser", |
110 "//components/history/core/browser:browser", | 111 "//components/history/core/browser:browser", |
111 "//components/invalidation/impl", | 112 "//components/invalidation/impl", |
112 "//components/invalidation/impl:test_support", | 113 "//components/invalidation/impl:test_support", |
113 "//components/pref_registry", | 114 "//components/pref_registry", |
114 "//components/signin/core/browser:browser", | 115 "//components/signin/core/browser:browser", |
115 "//components/signin/core/browser:test_support", | 116 "//components/signin/core/browser:test_support", |
116 "//components/sync_driver", | 117 "//components/sync_driver", |
117 "//components/sync_driver:test_support", | 118 "//components/sync_driver:test_support", |
118 "//components/sync_sessions:test_support", | 119 "//components/sync_sessions:test_support", |
119 "//components/syncable_prefs:test_support", | 120 "//components/syncable_prefs:test_support", |
120 "//google_apis", | 121 "//google_apis", |
121 "//net:test_support", | 122 "//net:test_support", |
122 "//sync:test_support_sync_core", | 123 "//sync:test_support_sync_core", |
123 "//sync:test_support_sync_internal_api", | 124 "//sync:test_support_sync_internal_api", |
124 "//testing/gmock", | 125 "//testing/gmock", |
125 ] | 126 ] |
126 } | 127 } |
OLD | NEW |