| 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/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 | 6 |
| 7 source_set("sync_driver") { | 7 source_set("sync_driver") { |
| 8 sources = [ | 8 sources = [ |
| 9 "about_sync_util.cc", | 9 "about_sync_util.cc", |
| 10 "about_sync_util.h", | 10 "about_sync_util.h", |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 ] | 228 ] |
| 229 deps = [ | 229 deps = [ |
| 230 ":test_support", | 230 ":test_support", |
| 231 "//base", | 231 "//base", |
| 232 "//base:prefs_test_support", | 232 "//base:prefs_test_support", |
| 233 "//base/test:test_support", | 233 "//base/test:test_support", |
| 234 "//components/os_crypt", | 234 "//components/os_crypt", |
| 235 "//components/pref_registry:test_support", | 235 "//components/pref_registry:test_support", |
| 236 "//components/version_info", | 236 "//components/version_info", |
| 237 "//net:test_support", | 237 "//net:test_support", |
| 238 "//sync:test_support_sync_api", |
| 238 "//sync:test_support_sync_internal_api", | 239 "//sync:test_support_sync_internal_api", |
| 239 "//sync:test_support_sync_api", | |
| 240 "//testing/gmock", | 240 "//testing/gmock", |
| 241 "//testing/gtest", | 241 "//testing/gtest", |
| 242 "//url", | 242 "//url", |
| 243 ] | 243 ] |
| 244 | 244 |
| 245 if (enable_configuration_policy) { | 245 if (enable_configuration_policy) { |
| 246 sources += [ "sync_policy_handler_unittest.cc" ] | 246 sources += [ "sync_policy_handler_unittest.cc" ] |
| 247 deps += [ | 247 deps += [ |
| 248 "//components/policy", | 248 "//components/policy", |
| 249 "//components/policy:policy_component", | 249 "//components/policy:policy_component", |
| 250 ] | 250 ] |
| 251 } | 251 } |
| 252 } | 252 } |
| OLD | NEW |