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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 "//ios/chrome/browser/history", | 49 "//ios/chrome/browser/history", |
50 "//ios/chrome/browser/invalidation", | 50 "//ios/chrome/browser/invalidation", |
51 "//ios/chrome/browser/passwords", | 51 "//ios/chrome/browser/passwords", |
52 "//ios/chrome/browser/reading_list", | 52 "//ios/chrome/browser/reading_list", |
53 "//ios/chrome/browser/search_engines", | 53 "//ios/chrome/browser/search_engines", |
54 "//ios/chrome/browser/services/gcm", | 54 "//ios/chrome/browser/services/gcm", |
55 "//ios/chrome/browser/sessions", | 55 "//ios/chrome/browser/sessions", |
56 "//ios/chrome/browser/signin", | 56 "//ios/chrome/browser/signin", |
57 "//ios/chrome/browser/sync/glue", | 57 "//ios/chrome/browser/sync/glue", |
58 "//ios/chrome/browser/sync/sessions", | 58 "//ios/chrome/browser/sync/sessions", |
| 59 "//ios/chrome/browser/tabs", |
59 "//ios/chrome/browser/undo", | 60 "//ios/chrome/browser/undo", |
60 "//ios/chrome/common", | 61 "//ios/chrome/common", |
61 "//ios/public/provider/chrome/browser", | |
62 "//ios/web", | 62 "//ios/web", |
63 "//net", | 63 "//net", |
64 "//ui/base", | 64 "//ui/base", |
65 "//url", | 65 "//url", |
66 ] | 66 ] |
67 allow_circular_includes_from = [ | 67 allow_circular_includes_from = [ |
68 "//ios/chrome/browser/history", | 68 "//ios/chrome/browser/history", |
69 "//ios/chrome/browser/passwords", | 69 "//ios/chrome/browser/passwords", |
70 "//ios/chrome/browser/signin", | 70 "//ios/chrome/browser/signin", |
71 "//ios/chrome/browser/sync/glue", | 71 "//ios/chrome/browser/sync/glue", |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 ":sync", | 112 ":sync", |
113 "//base", | 113 "//base", |
114 "//components/browser_sync", | 114 "//components/browser_sync", |
115 "//components/reading_list/core", | 115 "//components/reading_list/core", |
116 "//components/sync", | 116 "//components/sync", |
117 "//ios/chrome/browser/browser_state:test_support", | 117 "//ios/chrome/browser/browser_state:test_support", |
118 "//ios/web:test_support", | 118 "//ios/web:test_support", |
119 "//testing/gtest", | 119 "//testing/gtest", |
120 ] | 120 ] |
121 } | 121 } |
OLD | NEW |