OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 static_library("sync_driver") { |
| 6 sources = [ |
| 7 "backend_data_type_configurer.cc", |
| 8 "backend_data_type_configurer.h", |
| 9 "change_processor.cc", |
| 10 "change_processor.h", |
| 11 "data_type_controller.cc", |
| 12 "data_type_controller.h", |
| 13 "data_type_encryption_handler.cc", |
| 14 "data_type_encryption_handler.h", |
| 15 "data_type_error_handler.h", |
| 16 "data_type_manager.cc", |
| 17 "data_type_manager.h", |
| 18 "data_type_manager_impl.cc", |
| 19 "data_type_manager_impl.h", |
| 20 "data_type_manager_observer.h", |
| 21 "failed_data_types_handler.cc", |
| 22 "failed_data_types_handler.h", |
| 23 "generic_change_processor.cc", |
| 24 "generic_change_processor.h", |
| 25 "generic_change_processor_factory.cc", |
| 26 "generic_change_processor_factory.h", |
| 27 "model_association_manager.cc", |
| 28 "model_association_manager.h", |
| 29 "model_associator.h", |
| 30 "non_blocking_data_type_controller.cc", |
| 31 "non_blocking_data_type_controller.h", |
| 32 "non_blocking_data_type_manager.cc", |
| 33 "non_blocking_data_type_manager.h", |
| 34 "non_ui_data_type_controller.cc", |
| 35 "non_ui_data_type_controller.h", |
| 36 "pref_names.cc", |
| 37 "pref_names.h", |
| 38 "proxy_data_type_controller.cc", |
| 39 "proxy_data_type_controller.h", |
| 40 "sync_api_component_factory.h", |
| 41 "shared_change_processor.cc", |
| 42 "shared_change_processor.h", |
| 43 "shared_change_processor_ref.cc", |
| 44 "shared_change_processor_ref.h", |
| 45 "sync_frontend.cc", |
| 46 "sync_frontend.h", |
| 47 "sync_prefs.cc", |
| 48 "sync_prefs.h", |
| 49 "system_encryptor.cc", |
| 50 "system_encryptor.h", |
| 51 "ui_data_type_controller.cc", |
| 52 "ui_data_type_controller.h", |
| 53 "user_selectable_sync_type.h", |
| 54 ] |
| 55 |
| 56 deps = [ |
| 57 "//base", |
| 58 "//components/os_crypt", |
| 59 "//sync", |
| 60 ] |
| 61 } |
| 62 |
| 63 static_library("test_support") { |
| 64 sources = [ |
| 65 "change_processor_mock.cc", |
| 66 "change_processor_mock.h", |
| 67 "data_type_controller_mock.cc", |
| 68 "data_type_controller_mock.h", |
| 69 "data_type_error_handler_mock.cc", |
| 70 "data_type_error_handler_mock.h", |
| 71 "data_type_manager_mock.cc", |
| 72 "data_type_manager_mock.h", |
| 73 "fake_data_type_controller.cc", |
| 74 "fake_data_type_controller.h", |
| 75 "fake_generic_change_processor.cc", |
| 76 "fake_generic_change_processor.h", |
| 77 "model_associator_mock.cc", |
| 78 "model_associator_mock.h", |
| 79 "non_ui_data_type_controller_mock.cc", |
| 80 "non_ui_data_type_controller_mock.h", |
| 81 ] |
| 82 |
| 83 deps = [ |
| 84 ":sync_driver", |
| 85 "//base", |
| 86 "//sync", |
| 87 #'../sync/sync.gyp:test_support_sync_internal_api', TODO(GYP) |
| 88 "//testing/gmock", |
| 89 "//testing/gtest", |
| 90 ] |
| 91 } |
OLD | NEW |