summaryrefslogtreecommitdiff
path: root/chromium/ios/chrome/browser/sync/BUILD.gn
blob: f89f00d1464a1d13bb42ca72a803ecf978e4b450 (plain)
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# 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 = [
    # TODO(crbug.com/850428): Move consent_auditor_factory.* back to
    # ios/chrome/browser/consent_auditor, when it does not depend on
    # UserEventService anymore. Currently this is not possible due to a
    # BUILD.gn depedency.
    "consent_auditor_factory.cc",
    "consent_auditor_factory.h",
    "device_info_sync_service_factory.h",
    "device_info_sync_service_factory.mm",
    "ios_chrome_sync_client.h",
    "ios_chrome_sync_client.mm",
    "ios_chrome_synced_tab_delegate.h",
    "ios_chrome_synced_tab_delegate.mm",
    "ios_trusted_vault_client.h",
    "ios_trusted_vault_client.mm",
    "ios_user_event_service_factory.cc",
    "ios_user_event_service_factory.h",
    "model_type_store_service_factory.cc",
    "model_type_store_service_factory.h",
    "profile_sync_service_factory.cc",
    "profile_sync_service_factory.h",
    "send_tab_to_self_sync_service_factory.h",
    "send_tab_to_self_sync_service_factory.mm",
    "session_sync_service_factory.h",
    "session_sync_service_factory.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/consent_auditor",
    "//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/pref_registry",
    "//components/prefs",
    "//components/reading_list/core",
    "//components/search_engines",
    "//components/send_tab_to_self",
    "//components/sessions",
    "//components/signin/public/base",
    "//components/signin/public/identity_manager",
    "//components/sync",
    "//components/sync_device_info",
    "//components/sync_preferences",
    "//components/sync_sessions",
    "//components/sync_user_events",
    "//components/version_info",
    "//google_apis",
    "//ios/chrome/browser",
    "//ios/chrome/browser/autofill",
    "//ios/chrome/browser/bookmarks",
    "//ios/chrome/browser/browser_state",
    "//ios/chrome/browser/complex_tasks",
    "//ios/chrome/browser/dom_distiller",
    "//ios/chrome/browser/favicon",
    "//ios/chrome/browser/gcm",
    "//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/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/browser/webdata_services",
    "//ios/chrome/common",
    "//ios/components/webui:url_constants",
    "//ios/public/provider/chrome/browser",
    "//ios/public/provider/chrome/browser/signin",
    "//ios/web",
    "//ios/web/public/session",
    "//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 = [
    "sync_setup_service_mock.cc",
    "sync_setup_service_mock.h",
  ]
  deps = [
    ":sync",
    "//base",
    "//components/keyed_service/core",
    "//components/keyed_service/ios",
    "//components/sync",
    "//ios/chrome/browser/browser_state",
    "//ios/chrome/browser/signin",
    "//ios/chrome/common",
    "//ios/web",
    "//ui/base",
  ]
  public_deps = [ "//testing/gmock" ]
}

source_set("unit_tests") {
  configs += [ "//build/config/compiler:enable_arc" ]
  testonly = true
  sources = [
    "ios_chrome_synced_tab_delegate_unittest.mm",
    "profile_sync_service_factory_unittest.cc",
    "session_sync_service_factory_unittest.cc",
  ]
  deps = [
    ":sync",
    "//base",
    "//components/browser_sync",
    "//components/sync",
    "//ios/chrome/browser",
    "//ios/chrome/browser/browser_state:test_support",
    "//ios/web/public/test",
    "//testing/gtest",
    "//ui/base",
  ]
}