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

Side by Side Diff: sync/sync.gyp

Issue 10825137: FYI: Control Data + Per-Device Metadata (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add PER_USER_METADATA, refactor some encryption code Created 8 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 # The core sync library. 10 # The core sync library.
(...skipping 26 matching lines...) Expand all
37 # Propagate sync_proto since our headers include its generated 37 # Propagate sync_proto since our headers include its generated
38 # files. 38 # files.
39 'protocol/sync_proto.gyp:sync_proto', 39 'protocol/sync_proto.gyp:sync_proto',
40 ], 40 ],
41 'sources': [ 41 'sources': [
42 'base/sync_export.h', 42 'base/sync_export.h',
43 'internal_api/public/base/enum_set.h', 43 'internal_api/public/base/enum_set.h',
44 'internal_api/public/base/model_type.h', 44 'internal_api/public/base/model_type.h',
45 'internal_api/public/base/model_type_payload_map.cc', 45 'internal_api/public/base/model_type_payload_map.cc',
46 'internal_api/public/base/model_type_payload_map.h', 46 'internal_api/public/base/model_type_payload_map.h',
47 'internal_api/public/engine/control_model_worker.cc',
48 'internal_api/public/engine/control_model_worker.h',
47 'internal_api/public/engine/model_safe_worker.cc', 49 'internal_api/public/engine/model_safe_worker.cc',
48 'internal_api/public/engine/model_safe_worker.h', 50 'internal_api/public/engine/model_safe_worker.h',
49 'internal_api/public/engine/passive_model_worker.cc', 51 'internal_api/public/engine/passive_model_worker.cc',
50 'internal_api/public/engine/passive_model_worker.h', 52 'internal_api/public/engine/passive_model_worker.h',
51 'internal_api/public/engine/polling_constants.cc', 53 'internal_api/public/engine/polling_constants.cc',
52 'internal_api/public/engine/polling_constants.h', 54 'internal_api/public/engine/polling_constants.h',
53 'internal_api/public/engine/sync_status.cc', 55 'internal_api/public/engine/sync_status.cc',
54 'internal_api/public/engine/sync_status.h', 56 'internal_api/public/engine/sync_status.h',
55 'internal_api/public/sessions/model_neutral_state.cc', 57 'internal_api/public/sessions/model_neutral_state.cc',
56 'internal_api/public/sessions/model_neutral_state.h', 58 'internal_api/public/sessions/model_neutral_state.h',
57 'internal_api/public/sessions/sync_session_snapshot.cc', 59 'internal_api/public/sessions/sync_session_snapshot.cc',
58 'internal_api/public/sessions/sync_session_snapshot.h', 60 'internal_api/public/sessions/sync_session_snapshot.h',
59 'internal_api/public/sessions/sync_source_info.cc', 61 'internal_api/public/sessions/sync_source_info.cc',
60 'internal_api/public/sessions/sync_source_info.h', 62 'internal_api/public/sessions/sync_source_info.h',
61 'internal_api/public/util/experiments.h', 63 'internal_api/public/util/experiments.h',
62 'internal_api/public/util/immutable.h', 64 'internal_api/public/util/immutable.h',
63 'internal_api/public/util/syncer_error.cc', 65 'internal_api/public/util/syncer_error.cc',
64 'internal_api/public/util/syncer_error.h', 66 'internal_api/public/util/syncer_error.h',
65 'internal_api/public/util/sync_string_conversions.cc', 67 'internal_api/public/util/sync_string_conversions.cc',
66 'internal_api/public/util/sync_string_conversions.h', 68 'internal_api/public/util/sync_string_conversions.h',
67 'internal_api/public/util/report_unrecoverable_error_function.h', 69 'internal_api/public/util/report_unrecoverable_error_function.h',
68 'internal_api/public/util/unrecoverable_error_handler.h', 70 'internal_api/public/util/unrecoverable_error_handler.h',
69 'internal_api/public/util/unrecoverable_error_info.h', 71 'internal_api/public/util/unrecoverable_error_info.h',
70 'internal_api/public/util/unrecoverable_error_info.cc', 72 'internal_api/public/util/unrecoverable_error_info.cc',
71 'internal_api/public/util/weak_handle.cc', 73 'internal_api/public/util/weak_handle.cc',
72 'internal_api/public/util/weak_handle.h', 74 'internal_api/public/util/weak_handle.h',
73 'engine/all_status.cc', 75 'engine/all_status.cc',
74 'engine/all_status.h', 76 'engine/all_status.h',
77 'engine/apply_control_data_updates.cc',
78 'engine/apply_control_data_updates.h',
75 'engine/apply_updates_command.cc', 79 'engine/apply_updates_command.cc',
76 'engine/apply_updates_command.h', 80 'engine/apply_updates_command.h',
77 'engine/build_commit_command.cc', 81 'engine/build_commit_command.cc',
78 'engine/build_commit_command.h', 82 'engine/build_commit_command.h',
79 'engine/commit.cc', 83 'engine/commit.cc',
80 'engine/commit.h', 84 'engine/commit.h',
81 'engine/conflict_resolver.cc', 85 'engine/conflict_resolver.cc',
82 'engine/conflict_resolver.h', 86 'engine/conflict_resolver.h',
83 'engine/download_updates_command.cc', 87 'engine/download_updates_command.cc',
84 'engine/download_updates_command.h', 88 'engine/download_updates_command.h',
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 'test/fake_encryptor.h', 436 'test/fake_encryptor.h',
433 'test/fake_extensions_activity_monitor.cc', 437 'test/fake_extensions_activity_monitor.cc',
434 'test/fake_extensions_activity_monitor.h', 438 'test/fake_extensions_activity_monitor.h',
435 'test/null_directory_change_delegate.cc', 439 'test/null_directory_change_delegate.cc',
436 'test/null_directory_change_delegate.h', 440 'test/null_directory_change_delegate.h',
437 'test/null_transaction_observer.cc', 441 'test/null_transaction_observer.cc',
438 'test/null_transaction_observer.h', 442 'test/null_transaction_observer.h',
439 'test/sessions/test_scoped_session_event_listener.h', 443 'test/sessions/test_scoped_session_event_listener.h',
440 'test/test_directory_backing_store.cc', 444 'test/test_directory_backing_store.cc',
441 'test/test_directory_backing_store.h', 445 'test/test_directory_backing_store.h',
446 'test/test_entry_factory.cc',
447 'test/test_entry_factory.h',
442 'util/test_unrecoverable_error_handler.cc', 448 'util/test_unrecoverable_error_handler.cc',
443 'util/test_unrecoverable_error_handler.h', 449 'util/test_unrecoverable_error_handler.h',
444 ], 450 ],
445 }, 451 },
446 452
447 # Test support files for the 'sync_notifier' target. 453 # Test support files for the 'sync_notifier' target.
448 { 454 {
449 'target_name': 'test_support_sync_notifier', 455 'target_name': 'test_support_sync_notifier',
450 'type': 'static_library', 456 'type': 'static_library',
451 'variables': { 'enable_wexit_time_destructors': 1, }, 457 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
555 'variables': { 'enable_wexit_time_destructors': 1, }, 561 'variables': { 'enable_wexit_time_destructors': 1, },
556 'include_dirs': [ 562 'include_dirs': [
557 '..', 563 '..',
558 ], 564 ],
559 'sources': [ 565 'sources': [
560 'internal_api/public/base/enum_set_unittest.cc', 566 'internal_api/public/base/enum_set_unittest.cc',
561 'internal_api/public/base/model_type_payload_map_unittest.cc', 567 'internal_api/public/base/model_type_payload_map_unittest.cc',
562 'internal_api/public/engine/model_safe_worker_unittest.cc', 568 'internal_api/public/engine/model_safe_worker_unittest.cc',
563 'internal_api/public/util/immutable_unittest.cc', 569 'internal_api/public/util/immutable_unittest.cc',
564 'engine/apply_updates_command_unittest.cc', 570 'engine/apply_updates_command_unittest.cc',
571 'engine/apply_control_data_updates_unittest.cc',
565 'engine/build_commit_command_unittest.cc', 572 'engine/build_commit_command_unittest.cc',
566 'engine/download_updates_command_unittest.cc', 573 'engine/download_updates_command_unittest.cc',
567 'engine/model_changing_syncer_command_unittest.cc', 574 'engine/model_changing_syncer_command_unittest.cc',
568 'engine/process_commit_response_command_unittest.cc', 575 'engine/process_commit_response_command_unittest.cc',
569 'engine/process_updates_command_unittest.cc', 576 'engine/process_updates_command_unittest.cc',
570 'engine/resolve_conflicts_command_unittest.cc', 577 'engine/resolve_conflicts_command_unittest.cc',
571 'engine/syncer_proto_util_unittest.cc', 578 'engine/syncer_proto_util_unittest.cc',
572 'engine/syncer_unittest.cc', 579 'engine/syncer_unittest.cc',
573 'engine/sync_scheduler_unittest.cc', 580 'engine/sync_scheduler_unittest.cc',
574 'engine/sync_scheduler_whitebox_unittest.cc', 581 'engine/sync_scheduler_whitebox_unittest.cc',
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
840 'variables': { 847 'variables': {
841 'test_suite_name': 'sync_unit_tests', 848 'test_suite_name': 'sync_unit_tests',
842 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', 849 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)',
843 }, 850 },
844 'includes': [ '../build/apk_test.gypi' ], 851 'includes': [ '../build/apk_test.gypi' ],
845 }, 852 },
846 ], 853 ],
847 }], 854 }],
848 ], 855 ],
849 } 856 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698