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 14 matching lines...) Expand all Loading... |
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/core", | 34 "//components/reading_list/core", |
35 "//components/reading_list/ios", | 35 "//components/reading_list/core:flags", |
36 "//components/search_engines", | 36 "//components/search_engines", |
37 "//components/sessions", | 37 "//components/sessions", |
38 "//components/signin/core/browser", | 38 "//components/signin/core/browser", |
39 "//components/sync", | 39 "//components/sync", |
40 "//components/sync_preferences", | 40 "//components/sync_preferences", |
41 "//components/sync_sessions", | 41 "//components/sync_sessions", |
42 "//google_apis", | 42 "//google_apis", |
43 "//ios/chrome/browser", | 43 "//ios/chrome/browser", |
44 "//ios/chrome/browser/autofill", | 44 "//ios/chrome/browser/autofill", |
45 "//ios/chrome/browser/bookmarks", | 45 "//ios/chrome/browser/bookmarks", |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 | 106 |
107 source_set("unit_tests") { | 107 source_set("unit_tests") { |
108 testonly = true | 108 testonly = true |
109 sources = [ | 109 sources = [ |
110 "ios_chrome_profile_sync_service_factory_unittest.cc", | 110 "ios_chrome_profile_sync_service_factory_unittest.cc", |
111 ] | 111 ] |
112 deps = [ | 112 deps = [ |
113 ":sync", | 113 ":sync", |
114 "//base", | 114 "//base", |
115 "//components/browser_sync", | 115 "//components/browser_sync", |
116 "//components/reading_list/core", | 116 "//components/reading_list/core:flags", |
117 "//components/sync", | 117 "//components/sync", |
118 "//ios/chrome/browser/browser_state:test_support", | 118 "//ios/chrome/browser/browser_state:test_support", |
119 "//ios/web:test_support", | 119 "//ios/web:test_support", |
120 "//testing/gtest", | 120 "//testing/gtest", |
121 ] | 121 ] |
122 } | 122 } |
OLD | NEW |