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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 "engine_impl/commit_contributor.cc", | 270 "engine_impl/commit_contributor.cc", |
271 "engine_impl/commit_contributor.h", | 271 "engine_impl/commit_contributor.h", |
272 "engine_impl/commit_processor.cc", | 272 "engine_impl/commit_processor.cc", |
273 "engine_impl/commit_processor.h", | 273 "engine_impl/commit_processor.h", |
274 "engine_impl/commit_util.cc", | 274 "engine_impl/commit_util.cc", |
275 "engine_impl/commit_util.h", | 275 "engine_impl/commit_util.h", |
276 "engine_impl/conflict_resolver.cc", | 276 "engine_impl/conflict_resolver.cc", |
277 "engine_impl/conflict_resolver.h", | 277 "engine_impl/conflict_resolver.h", |
278 "engine_impl/conflict_util.cc", | 278 "engine_impl/conflict_util.cc", |
279 "engine_impl/conflict_util.h", | 279 "engine_impl/conflict_util.h", |
| 280 "engine_impl/cycle/data_type_debug_info_emitter.cc", |
| 281 "engine_impl/cycle/data_type_debug_info_emitter.h", |
280 "engine_impl/cycle/data_type_tracker.cc", | 282 "engine_impl/cycle/data_type_tracker.cc", |
281 "engine_impl/cycle/data_type_tracker.h", | 283 "engine_impl/cycle/data_type_tracker.h", |
282 "engine_impl/cycle/debug_info_getter.h", | 284 "engine_impl/cycle/debug_info_getter.h", |
283 "engine_impl/cycle/directory_type_debug_info_emitter.cc", | 285 "engine_impl/cycle/directory_type_debug_info_emitter.cc", |
284 "engine_impl/cycle/directory_type_debug_info_emitter.h", | 286 "engine_impl/cycle/directory_type_debug_info_emitter.h", |
| 287 "engine_impl/cycle/non_blocking_type_debug_info_emitter.cc", |
| 288 "engine_impl/cycle/non_blocking_type_debug_info_emitter.h", |
285 "engine_impl/cycle/nudge_tracker.cc", | 289 "engine_impl/cycle/nudge_tracker.cc", |
286 "engine_impl/cycle/nudge_tracker.h", | 290 "engine_impl/cycle/nudge_tracker.h", |
287 "engine_impl/cycle/status_controller.cc", | 291 "engine_impl/cycle/status_controller.cc", |
288 "engine_impl/cycle/status_controller.h", | 292 "engine_impl/cycle/status_controller.h", |
289 "engine_impl/cycle/sync_cycle.cc", | 293 "engine_impl/cycle/sync_cycle.cc", |
290 "engine_impl/cycle/sync_cycle.h", | 294 "engine_impl/cycle/sync_cycle.h", |
291 "engine_impl/cycle/sync_cycle_context.cc", | 295 "engine_impl/cycle/sync_cycle_context.cc", |
292 "engine_impl/cycle/sync_cycle_context.h", | 296 "engine_impl/cycle/sync_cycle_context.h", |
293 "engine_impl/debug_info_event_listener.cc", | 297 "engine_impl/debug_info_event_listener.cc", |
294 "engine_impl/debug_info_event_listener.h", | 298 "engine_impl/debug_info_event_listener.h", |
(...skipping 823 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1118 deps = [ | 1122 deps = [ |
1119 ":fake_server_jni", | 1123 ":fake_server_jni", |
1120 ":sync", | 1124 ":sync", |
1121 ":test_support_fake_server", | 1125 ":test_support_fake_server", |
1122 "//base", | 1126 "//base", |
1123 "//testing/gtest", | 1127 "//testing/gtest", |
1124 "//url:url", | 1128 "//url:url", |
1125 ] | 1129 ] |
1126 } | 1130 } |
1127 } | 1131 } |
OLD | NEW |