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("sync") { | 5 source_set("sync") { |
6 configs += [ "//build/config/compiler:enable_arc" ] | 6 configs += [ "//build/config/compiler:enable_arc" ] |
7 sources = [ | 7 sources = [ |
8 "ios_chrome_profile_sync_service_factory.cc", | 8 "ios_chrome_profile_sync_service_factory.cc", |
9 "ios_chrome_profile_sync_service_factory.h", | 9 "ios_chrome_profile_sync_service_factory.h", |
10 "ios_chrome_sync_client.h", | 10 "ios_chrome_sync_client.h", |
(...skipping 13 matching lines...) Expand all Loading... |
24 "//components/browser_sync", | 24 "//components/browser_sync", |
25 "//components/dom_distiller/core", | 25 "//components/dom_distiller/core", |
26 "//components/history/core/browser", | 26 "//components/history/core/browser", |
27 "//components/invalidation/impl", | 27 "//components/invalidation/impl", |
28 "//components/keyed_service/core", | 28 "//components/keyed_service/core", |
29 "//components/keyed_service/ios", | 29 "//components/keyed_service/ios", |
30 "//components/network_time", | 30 "//components/network_time", |
31 "//components/password_manager/core/browser", | 31 "//components/password_manager/core/browser", |
32 "//components/password_manager/sync/browser", | 32 "//components/password_manager/sync/browser", |
33 "//components/prefs", | 33 "//components/prefs", |
34 "//components/reading_list", | 34 "//components/reading_list/core", |
| 35 "//components/reading_list/ios", |
35 "//components/search_engines", | 36 "//components/search_engines", |
36 "//components/sessions", | 37 "//components/sessions", |
37 "//components/signin/core/browser", | 38 "//components/signin/core/browser", |
38 "//components/sync", | 39 "//components/sync", |
39 "//components/sync_preferences", | 40 "//components/sync_preferences", |
40 "//components/sync_sessions", | 41 "//components/sync_sessions", |
41 "//google_apis", | 42 "//google_apis", |
42 "//ios/chrome/browser", | 43 "//ios/chrome/browser", |
43 "//ios/chrome/browser/autofill", | 44 "//ios/chrome/browser/autofill", |
44 "//ios/chrome/browser/bookmarks", | 45 "//ios/chrome/browser/bookmarks", |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 deps = [ | 111 deps = [ |
111 ":sync", | 112 ":sync", |
112 "//base", | 113 "//base", |
113 "//components/browser_sync", | 114 "//components/browser_sync", |
114 "//components/sync", | 115 "//components/sync", |
115 "//ios/chrome/browser/browser_state:test_support", | 116 "//ios/chrome/browser/browser_state:test_support", |
116 "//ios/web:test_support", | 117 "//ios/web:test_support", |
117 "//testing/gtest", | 118 "//testing/gtest", |
118 ] | 119 ] |
119 } | 120 } |
OLD | NEW |