Chromium Code Reviews| 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 | 6 |
| 7 static_library("sync_driver") { | 7 static_library("sync_driver") { |
| 8 sources = [ | 8 sources = [ |
| 9 "backend_data_type_configurer.cc", | 9 "backend_data_type_configurer.cc", |
| 10 "backend_data_type_configurer.h", | 10 "backend_data_type_configurer.h", |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 93 sources += [ | 93 sources += [ |
| 94 "sync_policy_handler.cc", | 94 "sync_policy_handler.cc", |
| 95 "sync_policy_handler.h", | 95 "sync_policy_handler.h", |
| 96 ] | 96 ] |
| 97 } | 97 } |
| 98 } | 98 } |
| 99 | 99 |
| 100 source_set("unit_tests") { | 100 source_set("unit_tests") { |
| 101 testonly = true | 101 testonly = true |
| 102 sources = [ | 102 sources = [ |
| 103 "data_type_manager_impl_unittest.cc", | |
| 104 "device_info_data_type_controller_unittest.cc", | |
| 105 "device_info_sync_service_unittest.cc", | |
| 106 "generic_change_processor_unittest.cc", | |
| 107 "model_association_manager_unittest.cc", | |
| 108 "non_blocking_data_type_controller_unittest.cc", | |
| 109 "non_ui_data_type_controller_unittest.cc", | |
| 110 "shared_change_processor_unittest.cc", | |
| 111 "sync_policy_handler_unittest.cc", | |
| 112 "sync_prefs_unittest.cc", | |
| 113 "system_encryptor_unittest.cc", | |
| 103 "tab_node_pool_unittest.cc", | 114 "tab_node_pool_unittest.cc", |
| 115 "ui_data_type_controller_unittest.cc", | |
| 104 ] | 116 ] |
| 105 | 117 |
| 106 deps = [ | 118 deps = [ |
| 107 ":sync_driver", | 119 ":sync_driver", |
| 120 ":test_support", | |
| 121 "//base", | |
| 122 "//components/pref_registry", | |
| 123 "//components/os_crypt", | |
|
droger
2015/08/19 13:45:31
Alphabetical order: move this line up
Abhishek
2015/08/19 13:48:46
Done.
| |
| 108 "//sync", | 124 "//sync", |
| 125 "//testing/gmock", | |
| 109 "//testing/gtest", | 126 "//testing/gtest", |
| 110 ] | 127 ] |
| 111 } | 128 } |
| 112 | 129 |
| 113 static_library("test_support") { | 130 static_library("test_support") { |
| 114 testonly = true | 131 testonly = true |
| 115 sources = [ | 132 sources = [ |
| 116 "change_processor_mock.cc", | 133 "change_processor_mock.cc", |
| 117 "change_processor_mock.h", | 134 "change_processor_mock.h", |
| 118 "data_type_controller_mock.cc", | 135 "data_type_controller_mock.cc", |
| (...skipping 17 matching lines...) Expand all Loading... | |
| 136 deps = [ | 153 deps = [ |
| 137 ":sync_driver", | 154 ":sync_driver", |
| 138 "//base", | 155 "//base", |
| 139 "//components/sessions", | 156 "//components/sessions", |
| 140 "//sync", | 157 "//sync", |
| 141 "//sync:test_support_sync_internal_api", | 158 "//sync:test_support_sync_internal_api", |
| 142 "//testing/gmock", | 159 "//testing/gmock", |
| 143 "//testing/gtest", | 160 "//testing/gtest", |
| 144 ] | 161 ] |
| 145 } | 162 } |
| OLD | NEW |