| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 | 105 |
| 106 source_set("unit_tests") { | 106 source_set("unit_tests") { |
| 107 testonly = true | 107 testonly = true |
| 108 sources = [ | 108 sources = [ |
| 109 "ios_chrome_profile_sync_service_factory_unittest.cc", | 109 "ios_chrome_profile_sync_service_factory_unittest.cc", |
| 110 ] | 110 ] |
| 111 deps = [ | 111 deps = [ |
| 112 ":sync", | 112 ":sync", |
| 113 "//base", | 113 "//base", |
| 114 "//components/browser_sync", | 114 "//components/browser_sync", |
| 115 "//components/reading_list/core", |
| 115 "//components/sync", | 116 "//components/sync", |
| 116 "//ios/chrome/browser/browser_state:test_support", | 117 "//ios/chrome/browser/browser_state:test_support", |
| 117 "//ios/web:test_support", | 118 "//ios/web:test_support", |
| 118 "//testing/gtest", | 119 "//testing/gtest", |
| 119 ] | 120 ] |
| 120 } | 121 } |
| OLD | NEW |