Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(557)

Side by Side Diff: components/sync/BUILD.gn

Issue 2494873003: [Sync] Allow sync start without sign-in if the local sync backend is on. (Closed)
Patch Set: Remove ifdefs around include. Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/suggestions/suggestions_service_impl.cc ('k') | components/sync/base/sync_prefs.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 "engine_impl/get_updates_delegate.cc", 329 "engine_impl/get_updates_delegate.cc",
330 "engine_impl/get_updates_delegate.h", 330 "engine_impl/get_updates_delegate.h",
331 "engine_impl/get_updates_processor.cc", 331 "engine_impl/get_updates_processor.cc",
332 "engine_impl/get_updates_processor.h", 332 "engine_impl/get_updates_processor.h",
333 "engine_impl/js_mutation_event_observer.cc", 333 "engine_impl/js_mutation_event_observer.cc",
334 "engine_impl/js_mutation_event_observer.h", 334 "engine_impl/js_mutation_event_observer.h",
335 "engine_impl/js_sync_encryption_handler_observer.cc", 335 "engine_impl/js_sync_encryption_handler_observer.cc",
336 "engine_impl/js_sync_encryption_handler_observer.h", 336 "engine_impl/js_sync_encryption_handler_observer.h",
337 "engine_impl/js_sync_manager_observer.cc", 337 "engine_impl/js_sync_manager_observer.cc",
338 "engine_impl/js_sync_manager_observer.h", 338 "engine_impl/js_sync_manager_observer.h",
339 "engine_impl/loopback_server/loopback_connection_manager.cc",
340 "engine_impl/loopback_server/loopback_connection_manager.h",
341 "engine_impl/loopback_server/loopback_server.cc",
342 "engine_impl/loopback_server/loopback_server.h",
343 "engine_impl/loopback_server/loopback_server_entity.cc",
344 "engine_impl/loopback_server/loopback_server_entity.h",
345 "engine_impl/loopback_server/persistent_bookmark_entity.cc",
346 "engine_impl/loopback_server/persistent_bookmark_entity.h",
347 "engine_impl/loopback_server/persistent_permanent_entity.cc",
348 "engine_impl/loopback_server/persistent_permanent_entity.h",
349 "engine_impl/loopback_server/persistent_tombstone_entity.cc",
350 "engine_impl/loopback_server/persistent_tombstone_entity.h",
351 "engine_impl/loopback_server/persistent_unique_client_entity.cc",
352 "engine_impl/loopback_server/persistent_unique_client_entity.h",
339 "engine_impl/model_type_connector_proxy.cc", 353 "engine_impl/model_type_connector_proxy.cc",
340 "engine_impl/model_type_connector_proxy.h", 354 "engine_impl/model_type_connector_proxy.h",
341 "engine_impl/model_type_registry.cc", 355 "engine_impl/model_type_registry.cc",
342 "engine_impl/model_type_registry.h", 356 "engine_impl/model_type_registry.h",
343 "engine_impl/model_type_worker.cc", 357 "engine_impl/model_type_worker.cc",
344 "engine_impl/model_type_worker.h", 358 "engine_impl/model_type_worker.h",
345 "engine_impl/net/server_connection_manager.cc", 359 "engine_impl/net/server_connection_manager.cc",
346 "engine_impl/net/server_connection_manager.h", 360 "engine_impl/net/server_connection_manager.h",
347 "engine_impl/net/sync_server_connection_manager.cc", 361 "engine_impl/net/sync_server_connection_manager.cc",
348 "engine_impl/net/sync_server_connection_manager.h", 362 "engine_impl/net/sync_server_connection_manager.h",
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
600 deps += [ "//chromeos" ] 614 deps += [ "//chromeos" ]
601 } 615 }
602 616
603 if (is_mac) { 617 if (is_mac) {
604 libs = [ 618 libs = [
605 "CoreFoundation.framework", 619 "CoreFoundation.framework",
606 "SystemConfiguration.framework", # Required by get_session_name_mac.mm. 620 "SystemConfiguration.framework", # Required by get_session_name_mac.mm.
607 ] 621 ]
608 } 622 }
609 623
610 if (is_win) {
611 sources += [
612 "engine_impl/loopback_server/loopback_connection_manager.cc",
613 "engine_impl/loopback_server/loopback_connection_manager.h",
614 "engine_impl/loopback_server/loopback_server.cc",
615 "engine_impl/loopback_server/loopback_server.h",
616 "engine_impl/loopback_server/loopback_server_entity.cc",
617 "engine_impl/loopback_server/loopback_server_entity.h",
618 "engine_impl/loopback_server/persistent_bookmark_entity.cc",
619 "engine_impl/loopback_server/persistent_bookmark_entity.h",
620 "engine_impl/loopback_server/persistent_permanent_entity.cc",
621 "engine_impl/loopback_server/persistent_permanent_entity.h",
622 "engine_impl/loopback_server/persistent_tombstone_entity.cc",
623 "engine_impl/loopback_server/persistent_tombstone_entity.h",
624 "engine_impl/loopback_server/persistent_unique_client_entity.cc",
625 "engine_impl/loopback_server/persistent_unique_client_entity.h",
626 ]
627 }
628
629 if (!is_ios) { 624 if (!is_ios) {
630 sources += [ 625 sources += [
631 "driver/sync_policy_handler.cc", 626 "driver/sync_policy_handler.cc",
632 "driver/sync_policy_handler.h", 627 "driver/sync_policy_handler.h",
633 ] 628 ]
634 deps += [ 629 deps += [
635 "//components/policy:generated", 630 "//components/policy:generated",
636 "//components/policy/core/browser", 631 "//components/policy/core/browser",
637 ] 632 ]
638 } 633 }
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after
1139 deps = [ 1134 deps = [
1140 ":fake_server_jni", 1135 ":fake_server_jni",
1141 ":sync", 1136 ":sync",
1142 ":test_support_fake_server", 1137 ":test_support_fake_server",
1143 "//base", 1138 "//base",
1144 "//testing/gtest", 1139 "//testing/gtest",
1145 "//url:url", 1140 "//url:url",
1146 ] 1141 ]
1147 } 1142 }
1148 } 1143 }
OLDNEW
« no previous file with comments | « components/suggestions/suggestions_service_impl.cc ('k') | components/sync/base/sync_prefs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698