| 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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 ] | 241 ] |
| 242 deps = [ | 242 deps = [ |
| 243 ":test_support", | 243 ":test_support", |
| 244 "//base", | 244 "//base", |
| 245 "//base:prefs_test_support", | 245 "//base:prefs_test_support", |
| 246 "//base/test:test_support", | 246 "//base/test:test_support", |
| 247 "//components/os_crypt", | 247 "//components/os_crypt", |
| 248 "//components/pref_registry:test_support", | 248 "//components/pref_registry: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_internal_api", | 252 "//sync:test_support_sync_internal_api", |
| 252 "//sync:test_support_sync_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 |