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

Side by Side Diff: sync/sync.gyp

Issue 10837214: Refactor ModelTypePayloadMap and ObjectIdPayloadMap to StateMaps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . 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 24 matching lines...) Expand all
35 ], 35 ],
36 'export_dependent_settings': [ 36 'export_dependent_settings': [
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_state_map.cc',
46 'internal_api/public/base/model_type_payload_map.h', 46 'internal_api/public/base/model_type_state_map.h',
47 'internal_api/public/engine/model_safe_worker.cc', 47 'internal_api/public/engine/model_safe_worker.cc',
48 'internal_api/public/engine/model_safe_worker.h', 48 'internal_api/public/engine/model_safe_worker.h',
49 'internal_api/public/engine/passive_model_worker.cc', 49 'internal_api/public/engine/passive_model_worker.cc',
50 'internal_api/public/engine/passive_model_worker.h', 50 'internal_api/public/engine/passive_model_worker.h',
51 'internal_api/public/engine/polling_constants.cc', 51 'internal_api/public/engine/polling_constants.cc',
52 'internal_api/public/engine/polling_constants.h', 52 'internal_api/public/engine/polling_constants.h',
53 'internal_api/public/engine/sync_status.cc', 53 'internal_api/public/engine/sync_status.cc',
54 'internal_api/public/engine/sync_status.h', 54 'internal_api/public/engine/sync_status.h',
55 'internal_api/public/sessions/model_neutral_state.cc', 55 'internal_api/public/sessions/model_neutral_state.cc',
56 'internal_api/public/sessions/model_neutral_state.h', 56 'internal_api/public/sessions/model_neutral_state.h',
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 ], 245 ],
246 'export_dependent_settings': [ 246 'export_dependent_settings': [
247 '../jingle/jingle.gyp:notifier', 247 '../jingle/jingle.gyp:notifier',
248 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n', 248 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n',
249 ], 249 ],
250 'sources': [ 250 'sources': [
251 'notifier/invalidation_util.cc', 251 'notifier/invalidation_util.cc',
252 'notifier/invalidation_util.h', 252 'notifier/invalidation_util.h',
253 'notifier/notifications_disabled_reason.cc', 253 'notifier/notifications_disabled_reason.cc',
254 'notifier/notifications_disabled_reason.h', 254 'notifier/notifications_disabled_reason.h',
255 'notifier/object_id_payload_map.cc', 255 'notifier/object_id_state_map.cc',
256 'notifier/object_id_payload_map.h', 256 'notifier/object_id_state_map.h',
257 'notifier/sync_notifier.h', 257 'notifier/sync_notifier.h',
258 'notifier/sync_notifier_factory.cc', 258 'notifier/sync_notifier_factory.cc',
259 'notifier/sync_notifier_factory.h', 259 'notifier/sync_notifier_factory.h',
260 'notifier/sync_notifier_observer.h', 260 'notifier/sync_notifier_observer.h',
261 'notifier/sync_notifier_registrar.cc', 261 'notifier/sync_notifier_registrar.cc',
262 'notifier/sync_notifier_registrar.h', 262 'notifier/sync_notifier_registrar.h',
263 ], 263 ],
264 'conditions': [ 264 'conditions': [
265 ['OS != "android"', { 265 ['OS != "android"', {
266 'sources': [ 266 'sources': [
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 'sync', 551 'sync',
552 'test_support_sync', 552 'test_support_sync',
553 ], 553 ],
554 'direct_dependent_settings': { 554 'direct_dependent_settings': {
555 'variables': { 'enable_wexit_time_destructors': 1, }, 555 'variables': { 'enable_wexit_time_destructors': 1, },
556 'include_dirs': [ 556 'include_dirs': [
557 '..', 557 '..',
558 ], 558 ],
559 'sources': [ 559 'sources': [
560 'internal_api/public/base/enum_set_unittest.cc', 560 'internal_api/public/base/enum_set_unittest.cc',
561 'internal_api/public/base/model_type_payload_map_unittest.cc', 561 'internal_api/public/base/model_type_state_map_unittest.cc',
562 'internal_api/public/engine/model_safe_worker_unittest.cc', 562 'internal_api/public/engine/model_safe_worker_unittest.cc',
563 'internal_api/public/util/immutable_unittest.cc', 563 'internal_api/public/util/immutable_unittest.cc',
564 'engine/apply_updates_command_unittest.cc', 564 'engine/apply_updates_command_unittest.cc',
565 'engine/build_commit_command_unittest.cc', 565 'engine/build_commit_command_unittest.cc',
566 'engine/download_updates_command_unittest.cc', 566 'engine/download_updates_command_unittest.cc',
567 'engine/model_changing_syncer_command_unittest.cc', 567 'engine/model_changing_syncer_command_unittest.cc',
568 'engine/process_commit_response_command_unittest.cc', 568 'engine/process_commit_response_command_unittest.cc',
569 'engine/process_updates_command_unittest.cc', 569 'engine/process_updates_command_unittest.cc',
570 'engine/resolve_conflicts_command_unittest.cc', 570 'engine/resolve_conflicts_command_unittest.cc',
571 'engine/syncer_proto_util_unittest.cc', 571 'engine/syncer_proto_util_unittest.cc',
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
840 'variables': { 840 'variables': {
841 'test_suite_name': 'sync_unit_tests', 841 'test_suite_name': 'sync_unit_tests',
842 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', 842 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)',
843 }, 843 },
844 'includes': [ '../build/apk_test.gypi' ], 844 'includes': [ '../build/apk_test.gypi' ],
845 }, 845 },
846 ], 846 ],
847 }], 847 }],
848 ], 848 ],
849 } 849 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698