| 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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 "system_encryptor_unittest.cc", | 224 "system_encryptor_unittest.cc", |
| 225 "tab_node_pool_unittest.cc", | 225 "tab_node_pool_unittest.cc", |
| 226 "ui_data_type_controller_unittest.cc", | 226 "ui_data_type_controller_unittest.cc", |
| 227 ] | 227 ] |
| 228 deps = [ | 228 deps = [ |
| 229 ":test_support", | 229 ":test_support", |
| 230 "//base", | 230 "//base", |
| 231 "//base:prefs_test_support", | 231 "//base:prefs_test_support", |
| 232 "//base/test:test_support", | 232 "//base/test:test_support", |
| 233 "//components/os_crypt", | 233 "//components/os_crypt", |
| 234 "//components/policy", | |
| 235 "//components/policy:policy_component", | |
| 236 "//components/pref_registry:test_support", | 234 "//components/pref_registry:test_support", |
| 237 "//components/version_info", | 235 "//components/version_info", |
| 238 "//net:test_support", | 236 "//net:test_support", |
| 239 "//sync:test_support_sync_internal_api", | 237 "//sync:test_support_sync_internal_api", |
| 240 "//sync:test_support_sync_api", | 238 "//sync:test_support_sync_api", |
| 241 "//testing/gmock", | 239 "//testing/gmock", |
| 242 "//testing/gtest", | 240 "//testing/gtest", |
| 243 "//url", | 241 "//url", |
| 244 ] | 242 ] |
| 245 | 243 |
| 246 if (enable_configuration_policy) { | 244 if (enable_configuration_policy) { |
| 247 sources += [ "sync_policy_handler_unittest.cc" ] | 245 sources += [ "sync_policy_handler_unittest.cc" ] |
| 246 deps += [ |
| 247 "//components/policy", |
| 248 "//components/policy:policy_component", |
| 249 ] |
| 248 } | 250 } |
| 249 } | 251 } |
| OLD | NEW |