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