| 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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 "engine_impl/commit_contributor.cc", | 286 "engine_impl/commit_contributor.cc", |
| 287 "engine_impl/commit_contributor.h", | 287 "engine_impl/commit_contributor.h", |
| 288 "engine_impl/commit_processor.cc", | 288 "engine_impl/commit_processor.cc", |
| 289 "engine_impl/commit_processor.h", | 289 "engine_impl/commit_processor.h", |
| 290 "engine_impl/commit_util.cc", | 290 "engine_impl/commit_util.cc", |
| 291 "engine_impl/commit_util.h", | 291 "engine_impl/commit_util.h", |
| 292 "engine_impl/conflict_resolver.cc", | 292 "engine_impl/conflict_resolver.cc", |
| 293 "engine_impl/conflict_resolver.h", | 293 "engine_impl/conflict_resolver.h", |
| 294 "engine_impl/conflict_util.cc", | 294 "engine_impl/conflict_util.cc", |
| 295 "engine_impl/conflict_util.h", | 295 "engine_impl/conflict_util.h", |
| 296 "engine_impl/cycle/data_type_debug_info_emitter.cc", |
| 297 "engine_impl/cycle/data_type_debug_info_emitter.h", |
| 296 "engine_impl/cycle/data_type_tracker.cc", | 298 "engine_impl/cycle/data_type_tracker.cc", |
| 297 "engine_impl/cycle/data_type_tracker.h", | 299 "engine_impl/cycle/data_type_tracker.h", |
| 298 "engine_impl/cycle/debug_info_getter.h", | 300 "engine_impl/cycle/debug_info_getter.h", |
| 299 "engine_impl/cycle/directory_type_debug_info_emitter.cc", | 301 "engine_impl/cycle/directory_type_debug_info_emitter.cc", |
| 300 "engine_impl/cycle/directory_type_debug_info_emitter.h", | 302 "engine_impl/cycle/directory_type_debug_info_emitter.h", |
| 303 "engine_impl/cycle/non_blocking_type_debug_info_emitter.cc", |
| 304 "engine_impl/cycle/non_blocking_type_debug_info_emitter.h", |
| 301 "engine_impl/cycle/nudge_tracker.cc", | 305 "engine_impl/cycle/nudge_tracker.cc", |
| 302 "engine_impl/cycle/nudge_tracker.h", | 306 "engine_impl/cycle/nudge_tracker.h", |
| 303 "engine_impl/cycle/status_controller.cc", | 307 "engine_impl/cycle/status_controller.cc", |
| 304 "engine_impl/cycle/status_controller.h", | 308 "engine_impl/cycle/status_controller.h", |
| 305 "engine_impl/cycle/sync_cycle.cc", | 309 "engine_impl/cycle/sync_cycle.cc", |
| 306 "engine_impl/cycle/sync_cycle.h", | 310 "engine_impl/cycle/sync_cycle.h", |
| 307 "engine_impl/cycle/sync_cycle_context.cc", | 311 "engine_impl/cycle/sync_cycle_context.cc", |
| 308 "engine_impl/cycle/sync_cycle_context.h", | 312 "engine_impl/cycle/sync_cycle_context.h", |
| 309 "engine_impl/debug_info_event_listener.cc", | 313 "engine_impl/debug_info_event_listener.cc", |
| 310 "engine_impl/debug_info_event_listener.h", | 314 "engine_impl/debug_info_event_listener.h", |
| (...skipping 783 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1094 deps = [ | 1098 deps = [ |
| 1095 ":fake_server_jni", | 1099 ":fake_server_jni", |
| 1096 ":sync", | 1100 ":sync", |
| 1097 ":test_support_sync_fake_server", | 1101 ":test_support_sync_fake_server", |
| 1098 "//base", | 1102 "//base", |
| 1099 "//testing/gtest", | 1103 "//testing/gtest", |
| 1100 "//url:url", | 1104 "//url:url", |
| 1101 ] | 1105 ] |
| 1102 } | 1106 } |
| 1103 } | 1107 } |
| OLD | NEW |