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