1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
source_set("sync") {
configs += [ "//build/config/compiler:enable_arc" ]
sources = [
"ios_chrome_profile_sync_service_factory.cc",
"ios_chrome_profile_sync_service_factory.h",
"ios_chrome_sync_client.h",
"ios_chrome_sync_client.mm",
"ios_chrome_synced_tab_delegate.h",
"ios_chrome_synced_tab_delegate.mm",
"sync_observer_bridge.h",
"sync_observer_bridge.mm",
"sync_setup_service.cc",
"sync_setup_service.h",
"sync_setup_service_factory.cc",
"sync_setup_service_factory.h",
]
deps = [
"//base",
"//components/autofill/core/browser",
"//components/browser_sync",
"//components/dom_distiller/core",
"//components/history/core/browser",
"//components/invalidation/impl",
"//components/keyed_service/core",
"//components/keyed_service/ios",
"//components/network_time",
"//components/password_manager/core/browser",
"//components/password_manager/sync/browser",
"//components/prefs",
"//components/reading_list/core",
"//components/reading_list/ios",
"//components/search_engines",
"//components/sessions",
"//components/signin/core/browser",
"//components/sync",
"//components/sync_preferences",
"//components/sync_sessions",
"//google_apis",
"//ios/chrome/browser",
"//ios/chrome/browser/autofill",
"//ios/chrome/browser/bookmarks",
"//ios/chrome/browser/browser_state",
"//ios/chrome/browser/dom_distiller",
"//ios/chrome/browser/favicon",
"//ios/chrome/browser/history",
"//ios/chrome/browser/invalidation",
"//ios/chrome/browser/passwords",
"//ios/chrome/browser/reading_list",
"//ios/chrome/browser/search_engines",
"//ios/chrome/browser/services/gcm",
"//ios/chrome/browser/sessions",
"//ios/chrome/browser/signin",
"//ios/chrome/browser/sync/glue",
"//ios/chrome/browser/sync/sessions",
"//ios/chrome/browser/tabs",
"//ios/chrome/browser/undo",
"//ios/chrome/common",
"//ios/web",
"//net",
"//ui/base",
"//url",
]
allow_circular_includes_from = [
"//ios/chrome/browser/history",
"//ios/chrome/browser/passwords",
"//ios/chrome/browser/reading_list",
"//ios/chrome/browser/signin",
"//ios/chrome/browser/sync/glue",
"//ios/chrome/browser/sync/sessions",
]
}
source_set("test_support") {
testonly = true
sources = [
"fake_sync_service_factory.cc",
"fake_sync_service_factory.h",
"ios_chrome_profile_sync_test_util.cc",
"ios_chrome_profile_sync_test_util.h",
"sync_setup_service_mock.cc",
"sync_setup_service_mock.h",
]
deps = [
":sync",
"//base",
"//components/browser_sync",
"//components/browser_sync:test_support",
"//components/keyed_service/core",
"//components/keyed_service/ios",
"//components/signin/core/browser",
"//components/sync",
"//components/sync:test_support_driver",
"//ios/chrome/browser/browser_state",
"//ios/chrome/browser/signin",
"//ios/chrome/common",
"//ios/web",
]
public_deps = [
"//testing/gmock",
]
}
source_set("unit_tests") {
testonly = true
sources = [
"ios_chrome_profile_sync_service_factory_unittest.cc",
]
deps = [
":sync",
"//base",
"//components/browser_sync",
"//components/reading_list/core",
"//components/sync",
"//ios/chrome/browser/browser_state:test_support",
"//ios/web:test_support",
"//testing/gtest",
]
}
|