| 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 public_deps = [ | 187 public_deps = [ |
| 188 ":sync_driver", | 188 ":sync_driver", |
| 189 "//sync", | 189 "//sync", |
| 190 ] | 190 ] |
| 191 | 191 |
| 192 deps = [ | 192 deps = [ |
| 193 "//base", | 193 "//base", |
| 194 "//components/autofill/core/browser", | 194 "//components/autofill/core/browser", |
| 195 "//components/password_manager/core/browser", | 195 "//components/password_manager/core/browser", |
| 196 "//components/sessions", | 196 "//components/sessions", |
| 197 "//components/version_info", |
| 197 "//google_apis", | 198 "//google_apis", |
| 198 "//sync:test_support_sync_internal_api", | 199 "//sync:test_support_sync_internal_api", |
| 199 "//testing/gmock", | 200 "//testing/gmock", |
| 200 "//testing/gtest", | 201 "//testing/gtest", |
| 201 ] | 202 ] |
| 202 } | 203 } |
| 203 | 204 |
| 204 source_set("unit_tests") { | 205 source_set("unit_tests") { |
| 205 testonly = true | 206 testonly = true |
| 206 sources = [ | 207 sources = [ |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 ] | 246 ] |
| 246 | 247 |
| 247 if (enable_configuration_policy) { | 248 if (enable_configuration_policy) { |
| 248 sources += [ "sync_policy_handler_unittest.cc" ] | 249 sources += [ "sync_policy_handler_unittest.cc" ] |
| 249 deps += [ | 250 deps += [ |
| 250 "//components/policy", | 251 "//components/policy", |
| 251 "//components/policy:policy_component", | 252 "//components/policy:policy_component", |
| 252 ] | 253 ] |
| 253 } | 254 } |
| 254 } | 255 } |
| OLD | NEW |