| 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 "driver/startup_controller.h", | 143 "driver/startup_controller.h", |
| 144 "driver/sync_api_component_factory.h", | 144 "driver/sync_api_component_factory.h", |
| 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", |
| 154 "driver/sync_service_base.h", |
| 153 "driver/sync_service_observer.cc", | 155 "driver/sync_service_observer.cc", |
| 154 "driver/sync_service_observer.h", | 156 "driver/sync_service_observer.h", |
| 155 "driver/sync_service_utils.cc", | 157 "driver/sync_service_utils.cc", |
| 156 "driver/sync_service_utils.h", | 158 "driver/sync_service_utils.h", |
| 157 "driver/sync_stopped_reporter.cc", | 159 "driver/sync_stopped_reporter.cc", |
| 158 "driver/sync_stopped_reporter.h", | 160 "driver/sync_stopped_reporter.h", |
| 159 "driver/sync_type_preference_provider.h", | 161 "driver/sync_type_preference_provider.h", |
| 160 "driver/sync_util.cc", | 162 "driver/sync_util.cc", |
| 161 "driver/sync_util.h", | 163 "driver/sync_util.h", |
| 162 "driver/user_selectable_sync_type.h", | 164 "driver/user_selectable_sync_type.h", |
| (...skipping 973 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1136 deps = [ | 1138 deps = [ |
| 1137 ":fake_server_jni", | 1139 ":fake_server_jni", |
| 1138 ":sync", | 1140 ":sync", |
| 1139 ":test_support_fake_server", | 1141 ":test_support_fake_server", |
| 1140 "//base", | 1142 "//base", |
| 1141 "//testing/gtest", | 1143 "//testing/gtest", |
| 1142 "//url:url", | 1144 "//url:url", |
| 1143 ] | 1145 ] |
| 1144 } | 1146 } |
| 1145 } | 1147 } |
| OLD | NEW |