| 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 16 matching lines...) Expand all Loading... |
| 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/search_engines", | 33 "//components/search_engines", |
| 34 "//components/sessions", | 34 "//components/sessions", |
| 35 "//components/signin/core/browser", | 35 "//components/signin/core/browser", |
| 36 "//components/sync", | 36 "//components/sync", |
| 37 "//components/sync_preferences", |
| 37 "//components/sync_sessions", | 38 "//components/sync_sessions", |
| 38 "//components/syncable_prefs", | |
| 39 "//google_apis", | 39 "//google_apis", |
| 40 "//ios/chrome/browser:browser_no_public_deps", | 40 "//ios/chrome/browser:browser_no_public_deps", |
| 41 "//ios/chrome/browser/autofill", | 41 "//ios/chrome/browser/autofill", |
| 42 "//ios/chrome/browser/bookmarks", | 42 "//ios/chrome/browser/bookmarks", |
| 43 "//ios/chrome/browser/browser_state", | 43 "//ios/chrome/browser/browser_state", |
| 44 "//ios/chrome/browser/dom_distiller", | 44 "//ios/chrome/browser/dom_distiller", |
| 45 "//ios/chrome/browser/favicon", | 45 "//ios/chrome/browser/favicon", |
| 46 "//ios/chrome/browser/history", | 46 "//ios/chrome/browser/history", |
| 47 "//ios/chrome/browser/invalidation", | 47 "//ios/chrome/browser/invalidation", |
| 48 "//ios/chrome/browser/passwords", | 48 "//ios/chrome/browser/passwords", |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 "//components/signin/core/browser", | 89 "//components/signin/core/browser", |
| 90 "//components/sync", | 90 "//components/sync", |
| 91 "//components/sync:test_support_driver", | 91 "//components/sync:test_support_driver", |
| 92 "//ios/chrome/browser/browser_state", | 92 "//ios/chrome/browser/browser_state", |
| 93 "//ios/chrome/browser/signin", | 93 "//ios/chrome/browser/signin", |
| 94 "//ios/chrome/common", | 94 "//ios/chrome/common", |
| 95 "//ios/web", | 95 "//ios/web", |
| 96 "//testing/gmock", | 96 "//testing/gmock", |
| 97 ] | 97 ] |
| 98 } | 98 } |
| OLD | NEW |