| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 | 7 |
| 8 source_set("sync_driver") { | 8 source_set("sync_driver") { |
| 9 sources = [ | 9 sources = [ |
| 10 "about_sync_util.cc", | 10 "about_sync_util.cc", |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 "sync_util_unittest.cc", | 233 "sync_util_unittest.cc", |
| 234 "system_encryptor_unittest.cc", | 234 "system_encryptor_unittest.cc", |
| 235 "ui_data_type_controller_unittest.cc", | 235 "ui_data_type_controller_unittest.cc", |
| 236 "ui_model_type_controller_unittest.cc", | 236 "ui_model_type_controller_unittest.cc", |
| 237 ] | 237 ] |
| 238 deps = [ | 238 deps = [ |
| 239 ":test_support", | 239 ":test_support", |
| 240 "//base", | 240 "//base", |
| 241 "//base/test:test_support", | 241 "//base/test:test_support", |
| 242 "//components/invalidation/impl", | 242 "//components/invalidation/impl", |
| 243 "//components/os_crypt", | 243 "//components/os_crypt:test_support", |
| 244 "//components/pref_registry:test_support", | 244 "//components/pref_registry:test_support", |
| 245 "//components/prefs:test_support", | 245 "//components/prefs:test_support", |
| 246 "//components/signin/core/browser:test_support", | 246 "//components/signin/core/browser:test_support", |
| 247 "//components/syncable_prefs", | 247 "//components/syncable_prefs", |
| 248 "//components/syncable_prefs:test_support", | 248 "//components/syncable_prefs:test_support", |
| 249 "//components/version_info", | 249 "//components/version_info", |
| 250 "//net:test_support", | 250 "//net:test_support", |
| 251 "//sync:test_support_sync_api", | 251 "//sync:test_support_sync_api", |
| 252 "//sync:test_support_sync_internal_api", | 252 "//sync:test_support_sync_internal_api", |
| 253 "//testing/gmock", | 253 "//testing/gmock", |
| 254 "//testing/gtest", | 254 "//testing/gtest", |
| 255 "//url", | 255 "//url", |
| 256 ] | 256 ] |
| 257 | 257 |
| 258 if (enable_configuration_policy) { | 258 if (enable_configuration_policy) { |
| 259 sources += [ "sync_policy_handler_unittest.cc" ] | 259 sources += [ "sync_policy_handler_unittest.cc" ] |
| 260 deps += [ | 260 deps += [ |
| 261 "//components/policy", | 261 "//components/policy", |
| 262 "//components/policy:policy_component", | 262 "//components/policy:policy_component", |
| 263 ] | 263 ] |
| 264 } | 264 } |
| 265 } | 265 } |
| OLD | NEW |