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 { | 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 'browser_sync/browser/sync_type_preference_provider.h', |
| 39 ], |
| 40 }, |
| 41 { |
8 # GN version: //components/browser_sync_common | 42 # GN version: //components/browser_sync_common |
9 'target_name': 'browser_sync_common', | 43 'target_name': 'browser_sync_common', |
10 'type': 'static_library', | 44 'type': 'static_library', |
11 'dependencies': [ | 45 'dependencies': [ |
12 '../base/base.gyp:base', | 46 '../base/base.gyp:base', |
13 ], | 47 ], |
14 'include_dirs': [ | 48 'include_dirs': [ |
15 '..', | 49 '..', |
16 ], | 50 ], |
17 'sources': [ | 51 'sources': [ |
18 # Note: file list duplicated in GN build. | 52 # Note: file list duplicated in GN build. |
19 'browser_sync/common/browser_sync_switches.cc', | 53 'browser_sync/common/browser_sync_switches.cc', |
20 'browser_sync/common/browser_sync_switches.h', | 54 'browser_sync/common/browser_sync_switches.h', |
21 ], | 55 ], |
22 }, | 56 }, |
23 ], | 57 ], |
24 } | 58 } |
OLD | NEW |