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

Side by Side Diff: sync/BUILD.gn

Issue 452283003: sync: Finish non-blocking type encryption support (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More cryptographer testing Created 6 years, 4 months 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/sync/profile_sync_service.cc ('k') | sync/engine/cryptographer_provider.h » ('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/config/features.gni") 5 import("//build/config/features.gni")
6 6
7 component("sync") { 7 component("sync") {
8 deps = [ 8 deps = [
9 ":sync_core", 9 ":sync_core",
10 "//sync/protocol", 10 "//sync/protocol",
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 "engine/commit_contributor.h", 53 "engine/commit_contributor.h",
54 "engine/commit.h", 54 "engine/commit.h",
55 "engine/commit_processor.cc", 55 "engine/commit_processor.cc",
56 "engine/commit_processor.h", 56 "engine/commit_processor.h",
57 "engine/commit_util.cc", 57 "engine/commit_util.cc",
58 "engine/commit_util.h", 58 "engine/commit_util.h",
59 "engine/conflict_resolver.cc", 59 "engine/conflict_resolver.cc",
60 "engine/conflict_resolver.h", 60 "engine/conflict_resolver.h",
61 "engine/conflict_util.cc", 61 "engine/conflict_util.cc",
62 "engine/conflict_util.h", 62 "engine/conflict_util.h",
63 "engine/cryptographer_provider.cc",
64 "engine/cryptographer_provider.h",
65 "engine/directory_commit_contribution.cc", 63 "engine/directory_commit_contribution.cc",
66 "engine/directory_commit_contribution.h", 64 "engine/directory_commit_contribution.h",
67 "engine/directory_commit_contributor.cc", 65 "engine/directory_commit_contributor.cc",
68 "engine/directory_commit_contributor.h", 66 "engine/directory_commit_contributor.h",
69 "engine/directory_cryptographer_provider.cc",
70 "engine/directory_cryptographer_provider.h",
71 "engine/directory_update_handler.cc", 67 "engine/directory_update_handler.cc",
72 "engine/directory_update_handler.h", 68 "engine/directory_update_handler.h",
73 "engine/entity_tracker.cc", 69 "engine/entity_tracker.cc",
74 "engine/entity_tracker.h", 70 "engine/entity_tracker.h",
75 "engine/get_commit_ids.cc", 71 "engine/get_commit_ids.cc",
76 "engine/get_commit_ids.h", 72 "engine/get_commit_ids.h",
77 "engine/get_updates_delegate.cc", 73 "engine/get_updates_delegate.cc",
78 "engine/get_updates_delegate.h", 74 "engine/get_updates_delegate.h",
79 "engine/get_updates_processor.cc", 75 "engine/get_updates_processor.cc",
80 "engine/get_updates_processor.h", 76 "engine/get_updates_processor.h",
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 "test/engine/mock_connection_manager.cc", 434 "test/engine/mock_connection_manager.cc",
439 "test/engine/mock_connection_manager.h", 435 "test/engine/mock_connection_manager.h",
440 "test/engine/mock_model_type_sync_proxy.cc", 436 "test/engine/mock_model_type_sync_proxy.cc",
441 "test/engine/mock_model_type_sync_proxy.h", 437 "test/engine/mock_model_type_sync_proxy.h",
442 "test/engine/mock_model_type_sync_worker.cc", 438 "test/engine/mock_model_type_sync_worker.cc",
443 "test/engine/mock_model_type_sync_worker.h", 439 "test/engine/mock_model_type_sync_worker.h",
444 "test/engine/mock_nudge_handler.cc", 440 "test/engine/mock_nudge_handler.cc",
445 "test/engine/mock_nudge_handler.h", 441 "test/engine/mock_nudge_handler.h",
446 "test/engine/mock_update_handler.cc", 442 "test/engine/mock_update_handler.cc",
447 "test/engine/mock_update_handler.h", 443 "test/engine/mock_update_handler.h",
448 "test/engine/simple_cryptographer_provider.cc",
449 "test/engine/simple_cryptographer_provider.h",
450 "test/engine/single_type_mock_server.cc", 444 "test/engine/single_type_mock_server.cc",
451 "test/engine/single_type_mock_server.h", 445 "test/engine/single_type_mock_server.h",
452 "test/engine/test_directory_setter_upper.cc", 446 "test/engine/test_directory_setter_upper.cc",
453 "test/engine/test_directory_setter_upper.h", 447 "test/engine/test_directory_setter_upper.h",
454 "test/engine/test_id_factory.h", 448 "test/engine/test_id_factory.h",
455 "test/engine/test_syncable_utils.cc", 449 "test/engine/test_syncable_utils.cc",
456 "test/engine/test_syncable_utils.h", 450 "test/engine/test_syncable_utils.h",
457 "test/fake_encryptor.cc", 451 "test/fake_encryptor.cc",
458 "test/fake_encryptor.h", 452 "test/fake_encryptor.h",
459 "test/fake_sync_encryption_handler.cc", 453 "test/fake_sync_encryption_handler.cc",
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
772 "//base", 766 "//base",
773 "//base/test:test_support", 767 "//base/test:test_support",
774 "//net:test_support", 768 "//net:test_support",
775 "//testing/gtest", 769 "//testing/gtest",
776 ":test_support_sync_testserver", 770 ":test_support_sync_testserver",
777 ] 771 ]
778 } 772 }
779 } 773 }
780 774
781 #TODO(GYP): Need to port sync_android.gypi and Android test targets. 775 #TODO(GYP): Need to port sync_android.gypi and Android test targets.
OLDNEW
« no previous file with comments | « chrome/browser/sync/profile_sync_service.cc ('k') | sync/engine/cryptographer_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698