| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/sync_driver |
| 8 'target_name': 'sync_driver', | 9 'target_name': 'sync_driver', |
| 9 'type': 'static_library', | 10 'type': 'static_library', |
| 10 'dependencies': [ | 11 'dependencies': [ |
| 11 '../base/base.gyp:base', | 12 '../base/base.gyp:base', |
| 12 '../sync/sync.gyp:sync', | 13 '../sync/sync.gyp:sync', |
| 13 'os_crypt', | 14 'os_crypt', |
| 14 ], | 15 ], |
| 15 'include_dirs': [ | 16 'include_dirs': [ |
| 16 '..', | 17 '..', |
| 17 ], | 18 ], |
| 18 'sources': [ | 19 'sources': [ |
| 20 # Note: file list duplicated in GN build. |
| 19 'sync_driver/backend_data_type_configurer.cc', | 21 'sync_driver/backend_data_type_configurer.cc', |
| 20 'sync_driver/backend_data_type_configurer.h', | 22 'sync_driver/backend_data_type_configurer.h', |
| 21 'sync_driver/change_processor.cc', | 23 'sync_driver/change_processor.cc', |
| 22 'sync_driver/change_processor.h', | 24 'sync_driver/change_processor.h', |
| 23 'sync_driver/data_type_controller.cc', | 25 'sync_driver/data_type_controller.cc', |
| 24 'sync_driver/data_type_controller.h', | 26 'sync_driver/data_type_controller.h', |
| 25 'sync_driver/data_type_encryption_handler.cc', | 27 'sync_driver/data_type_encryption_handler.cc', |
| 26 'sync_driver/data_type_encryption_handler.h', | 28 'sync_driver/data_type_encryption_handler.h', |
| 27 'sync_driver/data_type_error_handler.h', | 29 'sync_driver/data_type_error_handler.h', |
| 28 'sync_driver/data_type_manager.cc', | 30 'sync_driver/data_type_manager.cc', |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 'sync_driver/fake_generic_change_processor.cc', | 95 'sync_driver/fake_generic_change_processor.cc', |
| 94 'sync_driver/fake_generic_change_processor.h', | 96 'sync_driver/fake_generic_change_processor.h', |
| 95 'sync_driver/model_associator_mock.cc', | 97 'sync_driver/model_associator_mock.cc', |
| 96 'sync_driver/model_associator_mock.h', | 98 'sync_driver/model_associator_mock.h', |
| 97 'sync_driver/non_ui_data_type_controller_mock.cc', | 99 'sync_driver/non_ui_data_type_controller_mock.cc', |
| 98 'sync_driver/non_ui_data_type_controller_mock.h', | 100 'sync_driver/non_ui_data_type_controller_mock.h', |
| 99 ], | 101 ], |
| 100 }, | 102 }, |
| 101 ], | 103 ], |
| 102 } | 104 } |
| OLD | NEW |