| 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", | 
| 11     "ios_chrome_sync_client.mm", | 11     "ios_chrome_sync_client.mm", | 
| 12     "ios_chrome_synced_tab_delegate.h", | 12     "ios_chrome_synced_tab_delegate.h", | 
| 13     "ios_chrome_synced_tab_delegate.mm", | 13     "ios_chrome_synced_tab_delegate.mm", | 
|  | 14     "ios_user_event_service_factory.cc", | 
|  | 15     "ios_user_event_service_factory.h", | 
| 14     "sync_observer_bridge.h", | 16     "sync_observer_bridge.h", | 
| 15     "sync_observer_bridge.mm", | 17     "sync_observer_bridge.mm", | 
| 16     "sync_setup_service.cc", | 18     "sync_setup_service.cc", | 
| 17     "sync_setup_service.h", | 19     "sync_setup_service.h", | 
| 18     "sync_setup_service_factory.cc", | 20     "sync_setup_service_factory.cc", | 
| 19     "sync_setup_service_factory.h", | 21     "sync_setup_service_factory.h", | 
| 20   ] | 22   ] | 
| 21   deps = [ | 23   deps = [ | 
| 22     "//base", | 24     "//base", | 
| 23     "//components/autofill/core/browser", | 25     "//components/autofill/core/browser", | 
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 111   deps = [ | 113   deps = [ | 
| 112     ":sync", | 114     ":sync", | 
| 113     "//base", | 115     "//base", | 
| 114     "//components/browser_sync", | 116     "//components/browser_sync", | 
| 115     "//components/sync", | 117     "//components/sync", | 
| 116     "//ios/chrome/browser/browser_state:test_support", | 118     "//ios/chrome/browser/browser_state:test_support", | 
| 117     "//ios/web/public/test", | 119     "//ios/web/public/test", | 
| 118     "//testing/gtest", | 120     "//testing/gtest", | 
| 119   ] | 121   ] | 
| 120 } | 122 } | 
| OLD | NEW | 
|---|