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

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

Issue 1439973004: [PoC] Reformat all BUILD.gn and *.gni files with new gn. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-sort-deps
Patch Set: Synchronize with new version of gn patch 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
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 source_set("browser") {
8 sources = [ 8 sources = [
9 "profile_sync_service.cc", 9 "profile_sync_service.cc",
10 "profile_sync_service.h", 10 "profile_sync_service.h",
11 "signin_confirmation_helper.cc", 11 "signin_confirmation_helper.cc",
12 "signin_confirmation_helper.h", 12 "signin_confirmation_helper.h",
13 ] 13 ]
14 14
15 deps = [ 15 deps = [
16 "//base", 16 "//base",
17 "//base:prefs", 17 "//base:prefs",
18 "//components/history/core/browser", 18 "//components/history/core/browser",
19 "//components/invalidation/impl", 19 "//components/invalidation/impl",
20 "//components/invalidation/public", 20 "//components/invalidation/public",
21 "//components/keyed_service/core", 21 "//components/keyed_service/core",
22 "//components/pref_registry", 22 "//components/pref_registry",
23 "//components/signin/core/browser", 23 "//components/signin/core/browser",
24 "//components/strings", 24 "//components/strings",
25 "//components/syncable_prefs",
26 "//components/sync_driver", 25 "//components/sync_driver",
27 "//components/sync_sessions", 26 "//components/sync_sessions",
27 "//components/syncable_prefs",
28 "//components/version_info", 28 "//components/version_info",
29 "//components/version_info:generate_version_info", 29 "//components/version_info:generate_version_info",
30 "//google_apis", 30 "//google_apis",
31 "//net", 31 "//net",
32 "//sync", 32 "//sync",
33 "//ui/base", 33 "//ui/base",
34 ] 34 ]
35 } 35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698