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

Side by Side Diff: sync/sync.gyp

Issue 10920017: [Sync] Generalize StringOrdinal to handle ordinal_in_parent field (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Relax tests Created 8 years, 3 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') | no next file » | 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 28 matching lines...) Expand all
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/invalidation_state.cc', 44 'internal_api/public/base/invalidation_state.cc',
45 'internal_api/public/base/invalidation_state.h', 45 'internal_api/public/base/invalidation_state.h',
46 'internal_api/public/base/model_type.h', 46 'internal_api/public/base/model_type.h',
47 'internal_api/public/base/model_type_state_map.cc', 47 'internal_api/public/base/model_type_state_map.cc',
48 'internal_api/public/base/model_type_state_map.h', 48 'internal_api/public/base/model_type_state_map.h',
49 'internal_api/public/base/node_ordinal.cc',
50 'internal_api/public/base/node_ordinal.h',
51 'internal_api/public/base/ordinal.h',
49 'internal_api/public/engine/model_safe_worker.cc', 52 'internal_api/public/engine/model_safe_worker.cc',
50 'internal_api/public/engine/model_safe_worker.h', 53 'internal_api/public/engine/model_safe_worker.h',
51 'internal_api/public/engine/passive_model_worker.cc', 54 'internal_api/public/engine/passive_model_worker.cc',
52 'internal_api/public/engine/passive_model_worker.h', 55 'internal_api/public/engine/passive_model_worker.h',
53 'internal_api/public/engine/polling_constants.cc', 56 'internal_api/public/engine/polling_constants.cc',
54 'internal_api/public/engine/polling_constants.h', 57 'internal_api/public/engine/polling_constants.h',
55 'internal_api/public/engine/sync_status.cc', 58 'internal_api/public/engine/sync_status.cc',
56 'internal_api/public/engine/sync_status.h', 59 'internal_api/public/engine/sync_status.h',
57 'internal_api/public/sessions/model_neutral_state.cc', 60 'internal_api/public/sessions/model_neutral_state.cc',
58 'internal_api/public/sessions/model_neutral_state.h', 61 'internal_api/public/sessions/model_neutral_state.h',
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 '..', 381 '..',
379 ], 382 ],
380 'dependencies': [ 383 'dependencies': [
381 '../base/base.gyp:base', 384 '../base/base.gyp:base',
382 'protocol/sync_proto.gyp:sync_proto', 385 'protocol/sync_proto.gyp:sync_proto',
383 'sync', 386 'sync',
384 ], 387 ],
385 # We avoid including header files from sync_proto in our public 388 # We avoid including header files from sync_proto in our public
386 # header files so we don't need to export its settings. 389 # header files so we don't need to export its settings.
387 'sources': [ 390 'sources': [
391 'api/string_ordinal.h',
388 'api/syncable_service.cc', 392 'api/syncable_service.cc',
389 'api/syncable_service.h', 393 'api/syncable_service.h',
390 'api/sync_data.h', 394 'api/sync_data.h',
391 'api/sync_data.cc', 395 'api/sync_data.cc',
392 'api/sync_change.h', 396 'api/sync_change.h',
393 'api/sync_change.cc', 397 'api/sync_change.cc',
394 'api/sync_change_processor.h', 398 'api/sync_change_processor.h',
395 'api/sync_change_processor.cc', 399 'api/sync_change_processor.cc',
396 'api/sync_error.h', 400 'api/sync_error.h',
397 'api/sync_error.cc', 401 'api/sync_error.cc',
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
578 'sync', 582 'sync',
579 'test_support_sync', 583 'test_support_sync',
580 ], 584 ],
581 'direct_dependent_settings': { 585 'direct_dependent_settings': {
582 'include_dirs': [ 586 'include_dirs': [
583 '..', 587 '..',
584 ], 588 ],
585 'sources': [ 589 'sources': [
586 'internal_api/public/base/enum_set_unittest.cc', 590 'internal_api/public/base/enum_set_unittest.cc',
587 'internal_api/public/base/model_type_state_map_unittest.cc', 591 'internal_api/public/base/model_type_state_map_unittest.cc',
592 'internal_api/public/base/node_ordinal_unittest.cc',
593 'internal_api/public/base/ordinal_unittest.cc',
588 'internal_api/public/engine/model_safe_worker_unittest.cc', 594 'internal_api/public/engine/model_safe_worker_unittest.cc',
589 'internal_api/public/util/immutable_unittest.cc', 595 'internal_api/public/util/immutable_unittest.cc',
590 'engine/apply_control_data_updates_unittest.cc', 596 'engine/apply_control_data_updates_unittest.cc',
591 'engine/apply_updates_command_unittest.cc', 597 'engine/apply_updates_command_unittest.cc',
592 'engine/backoff_delay_provider_unittest.cc', 598 'engine/backoff_delay_provider_unittest.cc',
593 'engine/build_commit_command_unittest.cc', 599 'engine/build_commit_command_unittest.cc',
594 'engine/download_updates_command_unittest.cc', 600 'engine/download_updates_command_unittest.cc',
595 'engine/model_changing_syncer_command_unittest.cc', 601 'engine/model_changing_syncer_command_unittest.cc',
596 'engine/process_commit_response_command_unittest.cc', 602 'engine/process_commit_response_command_unittest.cc',
597 'engine/process_updates_command_unittest.cc', 603 'engine/process_updates_command_unittest.cc',
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
870 'variables': { 876 'variables': {
871 'test_suite_name': 'sync_unit_tests', 877 'test_suite_name': 'sync_unit_tests',
872 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', 878 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)',
873 }, 879 },
874 'includes': [ '../build/apk_test.gypi' ], 880 'includes': [ '../build/apk_test.gypi' ],
875 }, 881 },
876 ], 882 ],
877 }], 883 }],
878 ], 884 ],
879 } 885 }
OLDNEW
« no previous file with comments | « sync/protocol/sync.proto ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698