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

Side by Side Diff: sync/sync.gyp

Issue 10584019: sync: Remove ClearUserData command. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix test Created 8 years, 6 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 | « sync/protocol/sync.proto ('k') | sync/test/engine/mock_connection_manager.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 (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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 'internal_api/public/util/weak_handle.cc', 64 'internal_api/public/util/weak_handle.cc',
65 'internal_api/public/util/weak_handle.h', 65 'internal_api/public/util/weak_handle.h',
66 'engine/all_status.cc', 66 'engine/all_status.cc',
67 'engine/all_status.h', 67 'engine/all_status.h',
68 'engine/apply_updates_command.cc', 68 'engine/apply_updates_command.cc',
69 'engine/apply_updates_command.h', 69 'engine/apply_updates_command.h',
70 'engine/build_commit_command.cc', 70 'engine/build_commit_command.cc',
71 'engine/build_commit_command.h', 71 'engine/build_commit_command.h',
72 'engine/cleanup_disabled_types_command.cc', 72 'engine/cleanup_disabled_types_command.cc',
73 'engine/cleanup_disabled_types_command.h', 73 'engine/cleanup_disabled_types_command.h',
74 'engine/clear_data_command.cc',
75 'engine/clear_data_command.h',
76 'engine/commit.cc', 74 'engine/commit.cc',
77 'engine/commit.h', 75 'engine/commit.h',
78 'engine/conflict_resolver.cc', 76 'engine/conflict_resolver.cc',
79 'engine/conflict_resolver.h', 77 'engine/conflict_resolver.h',
80 'engine/download_updates_command.cc', 78 'engine/download_updates_command.cc',
81 'engine/download_updates_command.h', 79 'engine/download_updates_command.h',
82 'engine/get_commit_ids_command.cc', 80 'engine/get_commit_ids_command.cc',
83 'engine/get_commit_ids_command.h', 81 'engine/get_commit_ids_command.h',
84 'engine/model_changing_syncer_command.cc', 82 'engine/model_changing_syncer_command.cc',
85 'engine/model_changing_syncer_command.h', 83 'engine/model_changing_syncer_command.h',
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after
507 '..', 505 '..',
508 ], 506 ],
509 'sources': [ 507 'sources': [
510 'internal_api/public/engine/model_safe_worker_unittest.cc', 508 'internal_api/public/engine/model_safe_worker_unittest.cc',
511 'internal_api/public/syncable/model_type_payload_map_unittest.cc', 509 'internal_api/public/syncable/model_type_payload_map_unittest.cc',
512 'internal_api/public/util/enum_set_unittest.cc', 510 'internal_api/public/util/enum_set_unittest.cc',
513 'internal_api/public/util/immutable_unittest.cc', 511 'internal_api/public/util/immutable_unittest.cc',
514 'engine/apply_updates_command_unittest.cc', 512 'engine/apply_updates_command_unittest.cc',
515 'engine/build_commit_command_unittest.cc', 513 'engine/build_commit_command_unittest.cc',
516 'engine/cleanup_disabled_types_command_unittest.cc', 514 'engine/cleanup_disabled_types_command_unittest.cc',
517 'engine/clear_data_command_unittest.cc',
518 'engine/download_updates_command_unittest.cc', 515 'engine/download_updates_command_unittest.cc',
519 'engine/model_changing_syncer_command_unittest.cc', 516 'engine/model_changing_syncer_command_unittest.cc',
520 'engine/nigori_util_unittest.cc', 517 'engine/nigori_util_unittest.cc',
521 'engine/process_commit_response_command_unittest.cc', 518 'engine/process_commit_response_command_unittest.cc',
522 'engine/process_updates_command_unittest.cc', 519 'engine/process_updates_command_unittest.cc',
523 'engine/resolve_conflicts_command_unittest.cc', 520 'engine/resolve_conflicts_command_unittest.cc',
524 'engine/syncer_proto_util_unittest.cc', 521 'engine/syncer_proto_util_unittest.cc',
525 'engine/syncer_unittest.cc', 522 'engine/syncer_unittest.cc',
526 'engine/syncproto_unittest.cc', 523 'engine/syncproto_unittest.cc',
527 'engine/sync_scheduler_unittest.cc', 524 'engine/sync_scheduler_unittest.cc',
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
769 'test_suite_name': 'sync_unit_tests', 766 'test_suite_name': 'sync_unit_tests',
770 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', 767 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)',
771 'input_jars_paths': [ '<(PRODUCT_DIR)/lib.java/chromium_base.jar', ] , 768 'input_jars_paths': [ '<(PRODUCT_DIR)/lib.java/chromium_base.jar', ] ,
772 }, 769 },
773 'includes': [ '../build/apk_test.gypi' ], 770 'includes': [ '../build/apk_test.gypi' ],
774 }, 771 },
775 ], 772 ],
776 }], 773 }],
777 ], 774 ],
778 } 775 }
OLDNEW
« no previous file with comments | « sync/protocol/sync.proto ('k') | sync/test/engine/mock_connection_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698