OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//build/config/features.gni") |
| 6 |
| 7 source_set("browser") { |
| 8 sources = [ |
| 9 "profile_sync_service.cc", |
| 10 "profile_sync_service.h", |
| 11 ] |
| 12 |
| 13 deps = [ |
| 14 "//base", |
| 15 "//base:prefs", |
| 16 "//components/history/core/browser", |
| 17 "//components/invalidation/impl", |
| 18 "//components/invalidation/public", |
| 19 "//components/keyed_service/core", |
| 20 "//components/pref_registry", |
| 21 "//components/signin/core/browser", |
| 22 "//components/strings", |
| 23 "//components/syncable_prefs", |
| 24 "//components/sync_driver", |
| 25 "//components/sync_sessions", |
| 26 "//components/version_info", |
| 27 "//google_apis", |
| 28 "//net", |
| 29 "//sync", |
| 30 "//ui/base", |
| 31 ] |
| 32 } |
OLD | NEW |