| 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 'browser_sync/browser/signin_confirmation_helper.cc', | 45 'browser_sync/browser/signin_confirmation_helper.cc', |
| 39 'browser_sync/browser/signin_confirmation_helper.h', | 46 'browser_sync/browser/signin_confirmation_helper.h', |
| 40 ], | 47 ], |
| 41 }, | 48 }, |
| 42 { | 49 { |
| 43 # GN version: //components/browser_sync_common | 50 # GN version: //components/browser_sync_common |
| 44 'target_name': 'browser_sync_common', | 51 'target_name': 'browser_sync_common', |
| 45 'type': 'static_library', | 52 'type': 'static_library', |
| 46 'dependencies': [ | 53 'dependencies': [ |
| 47 '../base/base.gyp:base', | 54 '../base/base.gyp:base', |
| 48 ], | 55 ], |
| 49 'include_dirs': [ | 56 'include_dirs': [ |
| 50 '..', | 57 '..', |
| 51 ], | 58 ], |
| 52 'sources': [ | 59 'sources': [ |
| 53 # Note: file list duplicated in GN build. | 60 # Note: file list duplicated in GN build. |
| 54 'browser_sync/common/browser_sync_switches.cc', | 61 'browser_sync/common/browser_sync_switches.cc', |
| 55 'browser_sync/common/browser_sync_switches.h', | 62 'browser_sync/common/browser_sync_switches.h', |
| 56 ], | 63 ], |
| 57 }, | 64 }, |
| 58 ], | 65 ], |
| 59 } | 66 } |
| OLD | NEW |