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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//components/sync/protocol/protocol_sources.gni") | 7 import("//components/sync/protocol/protocol_sources.gni") |
8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
9 | 9 |
10 static_library("sync") { | 10 static_library("sync") { |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 "driver/sync_client.cc", | 145 "driver/sync_client.cc", |
146 "driver/sync_client.h", | 146 "driver/sync_client.h", |
147 "driver/sync_driver_switches.cc", | 147 "driver/sync_driver_switches.cc", |
148 "driver/sync_driver_switches.h", | 148 "driver/sync_driver_switches.h", |
149 "driver/sync_error_controller.cc", | 149 "driver/sync_error_controller.cc", |
150 "driver/sync_error_controller.h", | 150 "driver/sync_error_controller.h", |
151 "driver/sync_service.cc", | 151 "driver/sync_service.cc", |
152 "driver/sync_service.h", | 152 "driver/sync_service.h", |
153 "driver/sync_service_base.cc", | 153 "driver/sync_service_base.cc", |
154 "driver/sync_service_base.h", | 154 "driver/sync_service_base.h", |
| 155 "driver/sync_service_crypto.cc", |
| 156 "driver/sync_service_crypto.h", |
155 "driver/sync_service_observer.cc", | 157 "driver/sync_service_observer.cc", |
156 "driver/sync_service_observer.h", | 158 "driver/sync_service_observer.h", |
157 "driver/sync_service_utils.cc", | 159 "driver/sync_service_utils.cc", |
158 "driver/sync_service_utils.h", | 160 "driver/sync_service_utils.h", |
159 "driver/sync_stopped_reporter.cc", | 161 "driver/sync_stopped_reporter.cc", |
160 "driver/sync_stopped_reporter.h", | 162 "driver/sync_stopped_reporter.h", |
161 "driver/sync_type_preference_provider.h", | 163 "driver/sync_type_preference_provider.h", |
162 "driver/sync_util.cc", | 164 "driver/sync_util.cc", |
163 "driver/sync_util.h", | 165 "driver/sync_util.h", |
164 "driver/user_selectable_sync_type.h", | 166 "driver/user_selectable_sync_type.h", |
(...skipping 975 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1140 deps = [ | 1142 deps = [ |
1141 ":fake_server_jni", | 1143 ":fake_server_jni", |
1142 ":sync", | 1144 ":sync", |
1143 ":test_support_fake_server", | 1145 ":test_support_fake_server", |
1144 "//base", | 1146 "//base", |
1145 "//testing/gtest", | 1147 "//testing/gtest", |
1146 "//url:url", | 1148 "//url:url", |
1147 ] | 1149 ] |
1148 } | 1150 } |
1149 } | 1151 } |
OLD | NEW |