| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("browser") { | 7 static_library("browser") { |
| 8 sources = [ | 8 sources = [ |
| 9 "profile_sync_components_factory_impl.cc", | 9 "profile_sync_components_factory_impl.cc", |
| 10 "profile_sync_components_factory_impl.h", | 10 "profile_sync_components_factory_impl.h", |
| 11 "profile_sync_service.cc", | 11 "profile_sync_service.cc", |
| 12 "profile_sync_service.h", | 12 "profile_sync_service.h", |
| 13 "signin_confirmation_helper.cc", | 13 "signin_confirmation_helper.cc", |
| 14 "signin_confirmation_helper.h", | 14 "signin_confirmation_helper.h", |
| 15 ] | 15 ] |
| 16 | 16 |
| 17 public_deps = [ | 17 public_deps = [ |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 "//components/sync_driver:test_support", | 127 "//components/sync_driver:test_support", |
| 128 "//components/sync_sessions:test_support", | 128 "//components/sync_sessions:test_support", |
| 129 "//components/syncable_prefs:test_support", | 129 "//components/syncable_prefs:test_support", |
| 130 "//google_apis", | 130 "//google_apis", |
| 131 "//net:test_support", | 131 "//net:test_support", |
| 132 "//sync:test_support_sync_core", | 132 "//sync:test_support_sync_core", |
| 133 "//sync:test_support_sync_internal_api", | 133 "//sync:test_support_sync_internal_api", |
| 134 "//testing/gmock", | 134 "//testing/gmock", |
| 135 ] | 135 ] |
| 136 } | 136 } |
| OLD | NEW |