Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1177)

Side by Side Diff: components/browser_sync/browser/BUILD.gn

Issue 1419103009: [Sync] Componentize ProfileSyncService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@max_bogue_sync_backend_host
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 "sync_type_preference_provider.h",
12 ]
13
14 deps = [
15 "//base",
16 "//base:prefs",
17 "//components/history/core/browser",
18 "//components/invalidation/impl",
19 "//components/invalidation/public",
20 "//components/keyed_service/core",
21 "//components/pref_registry",
22 "//components/signin/core/browser",
23 "//components/strings",
24 "//components/syncable_prefs",
25 "//components/sync_driver",
26 "//components/sync_sessions",
27 "//components/version_info",
28 "//google_apis",
29 "//net",
30 "//sync",
31 "//ui/base",
32 ]
33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698