| 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 | 8       # GN version: //components/browser_sync_browser | 
| 9       'target_name': 'browser_sync_browser', | 9       'target_name': 'browser_sync_browser', | 
| 10       'type': 'static_library', | 10       'type': 'static_library', | 
| 11       'dependencies': [ | 11       'dependencies': [ | 
| 12         '../base/base.gyp:base', | 12         '../base/base.gyp:base', | 
| 13         '../google_apis/google_apis.gyp:google_apis', | 13         '../google_apis/google_apis.gyp:google_apis', | 
| 14         '../net/net.gyp:net', | 14         '../net/net.gyp:net', | 
| 15         '../sync/sync.gyp:sync', | 15         '../sync/sync.gyp:sync', | 
| 16         '../ui/base/ui_base.gyp:ui_base', | 16         '../ui/base/ui_base.gyp:ui_base', | 
|  | 17         'autofill_core_browser', | 
| 17         'autofill_core_common', | 18         'autofill_core_common', | 
| 18         'browser_sync_common', | 19         'browser_sync_common', | 
| 19         'components_strings.gyp:components_strings', | 20         'components_strings.gyp:components_strings', | 
|  | 21         'dom_distiller_core', | 
| 20         'history_core_browser', | 22         'history_core_browser', | 
| 21         'invalidation_impl', | 23         'invalidation_impl', | 
| 22         'invalidation_public', | 24         'invalidation_public', | 
| 23         'keyed_service_core', | 25         'keyed_service_core', | 
|  | 26         'password_manager_sync_browser', | 
| 24         'pref_registry', | 27         'pref_registry', | 
| 25         'signin_core_browser', | 28         'signin_core_browser', | 
| 26         'syncable_prefs', | 29         'syncable_prefs', | 
|  | 30         'sync_bookmarks', | 
| 27         'sync_driver', | 31         'sync_driver', | 
| 28         'sync_sessions', | 32         'sync_sessions', | 
|  | 33         'variations', | 
| 29         'version_info', | 34         'version_info', | 
| 30       ], | 35       ], | 
| 31       'include_dirs': [ | 36       'include_dirs': [ | 
| 32         '..', | 37         '..', | 
| 33       ], | 38       ], | 
| 34       'sources': [ | 39       'sources': [ | 
| 35         # Note: file list duplicated in GN build. | 40         # Note: file list duplicated in GN build. | 
|  | 41         'browser_sync/browser/profile_sync_components_factory_impl.cc', | 
|  | 42         'browser_sync/browser/profile_sync_components_factory_impl.h', | 
| 36         'browser_sync/browser/profile_sync_service.cc', | 43         'browser_sync/browser/profile_sync_service.cc', | 
| 37         'browser_sync/browser/profile_sync_service.h', | 44         'browser_sync/browser/profile_sync_service.h', | 
| 38       ], | 45       ], | 
| 39     }, | 46     }, | 
| 40     { | 47     { | 
| 41       # GN version: //components/browser_sync_common | 48       # GN version: //components/browser_sync_common | 
| 42       'target_name': 'browser_sync_common', | 49       'target_name': 'browser_sync_common', | 
| 43       'type': 'static_library', | 50       'type': 'static_library', | 
| 44       'dependencies': [ | 51       'dependencies': [ | 
| 45         '../base/base.gyp:base', | 52         '../base/base.gyp:base', | 
| 46       ], | 53       ], | 
| 47       'include_dirs': [ | 54       'include_dirs': [ | 
| 48         '..', | 55         '..', | 
| 49       ], | 56       ], | 
| 50       'sources': [ | 57       'sources': [ | 
| 51         # Note: file list duplicated in GN build. | 58         # Note: file list duplicated in GN build. | 
| 52         'browser_sync/common/browser_sync_switches.cc', | 59         'browser_sync/common/browser_sync_switches.cc', | 
| 53         'browser_sync/common/browser_sync_switches.h', | 60         'browser_sync/common/browser_sync_switches.h', | 
| 54       ], | 61       ], | 
| 55     }, | 62     }, | 
| 56   ], | 63   ], | 
| 57 } | 64 } | 
| OLD | NEW | 
|---|