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

Side by Side Diff: components/browser_sync.gypi

Issue 1419103009: [Sync] Componentize ProfileSyncService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@max_bogue_sync_backend_host
Patch Set: Rebase 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
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | components/browser_sync/browser/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/browser_sync_browser
9 'target_name': 'browser_sync_browser',
10 'type': 'static_library',
11 'dependencies': [
12 '../base/base.gyp:base',
13 '../google_apis/google_apis.gyp:google_apis',
14 '../net/net.gyp:net',
15 '../sync/sync.gyp:sync',
16 '../ui/base/ui_base.gyp:ui_base',
17 'autofill_core_common',
18 'browser_sync_common',
19 'components_strings.gyp:components_strings',
20 'history_core_browser',
21 'invalidation_impl',
22 'invalidation_public',
23 'keyed_service_core',
24 'pref_registry',
25 'signin_core_browser',
26 'syncable_prefs',
27 'sync_driver',
28 'sync_sessions',
29 'version_info',
30 ],
31 'include_dirs': [
32 '..',
33 ],
34 'sources': [
35 # Note: file list duplicated in GN build.
36 'browser_sync/browser/profile_sync_service.cc',
37 'browser_sync/browser/profile_sync_service.h',
38 ],
39 },
40 {
8 # GN version: //components/browser_sync_common 41 # GN version: //components/browser_sync_common
9 'target_name': 'browser_sync_common', 42 'target_name': 'browser_sync_common',
10 'type': 'static_library', 43 'type': 'static_library',
11 'dependencies': [ 44 'dependencies': [
12 '../base/base.gyp:base', 45 '../base/base.gyp:base',
13 ], 46 ],
14 'include_dirs': [ 47 'include_dirs': [
15 '..', 48 '..',
16 ], 49 ],
17 'sources': [ 50 'sources': [
18 # Note: file list duplicated in GN build. 51 # Note: file list duplicated in GN build.
19 'browser_sync/common/browser_sync_switches.cc', 52 'browser_sync/common/browser_sync_switches.cc',
20 'browser_sync/common/browser_sync_switches.h', 53 'browser_sync/common/browser_sync_switches.h',
21 ], 54 ],
22 }, 55 },
23 ], 56 ],
24 } 57 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | components/browser_sync/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698