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

Side by Side Diff: sync/sync.gyp

Issue 11052007: Rename ModelType/ObjectIdStateMap to InvalidationMap. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 2 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/sessions/sync_session_unittest.cc ('k') | sync/test/engine/fake_sync_scheduler.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 24 matching lines...) Expand all
35 'protocol/sync_proto.gyp:sync_proto', 35 'protocol/sync_proto.gyp:sync_proto',
36 ], 36 ],
37 'export_dependent_settings': [ 37 'export_dependent_settings': [
38 # Propagate sync_proto since our headers include its generated 38 # Propagate sync_proto since our headers include its generated
39 # files. 39 # files.
40 'protocol/sync_proto.gyp:sync_proto', 40 'protocol/sync_proto.gyp:sync_proto',
41 ], 41 ],
42 'sources': [ 42 'sources': [
43 'base/sync_export.h', 43 'base/sync_export.h',
44 'internal_api/public/base/enum_set.h', 44 'internal_api/public/base/enum_set.h',
45 'internal_api/public/base/invalidation_state.cc', 45 'internal_api/public/base/invalidation.cc',
46 'internal_api/public/base/invalidation_state.h', 46 'internal_api/public/base/invalidation.h',
47 'internal_api/public/base/model_type.h', 47 'internal_api/public/base/model_type.h',
48 'internal_api/public/base/model_type_state_map.cc', 48 'internal_api/public/base/model_type_invalidation_map.cc',
49 'internal_api/public/base/model_type_state_map.h', 49 'internal_api/public/base/model_type_invalidation_map.h',
50 'internal_api/public/base/node_ordinal.cc', 50 'internal_api/public/base/node_ordinal.cc',
51 'internal_api/public/base/node_ordinal.h', 51 'internal_api/public/base/node_ordinal.h',
52 'internal_api/public/base/ordinal.h', 52 'internal_api/public/base/ordinal.h',
53 'internal_api/public/engine/model_safe_worker.cc', 53 'internal_api/public/engine/model_safe_worker.cc',
54 'internal_api/public/engine/model_safe_worker.h', 54 'internal_api/public/engine/model_safe_worker.h',
55 'internal_api/public/engine/passive_model_worker.cc', 55 'internal_api/public/engine/passive_model_worker.cc',
56 'internal_api/public/engine/passive_model_worker.h', 56 'internal_api/public/engine/passive_model_worker.h',
57 'internal_api/public/engine/polling_constants.cc', 57 'internal_api/public/engine/polling_constants.cc',
58 'internal_api/public/engine/polling_constants.h', 58 'internal_api/public/engine/polling_constants.h',
59 'internal_api/public/engine/sync_status.cc', 59 'internal_api/public/engine/sync_status.cc',
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 'notifier/invalidation_handler.h', 265 'notifier/invalidation_handler.h',
266 'notifier/invalidation_util.cc', 266 'notifier/invalidation_util.cc',
267 'notifier/invalidation_util.h', 267 'notifier/invalidation_util.h',
268 'notifier/invalidator_factory.cc', 268 'notifier/invalidator_factory.cc',
269 'notifier/invalidator_factory.h', 269 'notifier/invalidator_factory.h',
270 'notifier/invalidator.h', 270 'notifier/invalidator.h',
271 'notifier/invalidator_registrar.cc', 271 'notifier/invalidator_registrar.cc',
272 'notifier/invalidator_registrar.h', 272 'notifier/invalidator_registrar.h',
273 'notifier/invalidator_state.cc', 273 'notifier/invalidator_state.cc',
274 'notifier/invalidator_state.h', 274 'notifier/invalidator_state.h',
275 'notifier/object_id_state_map.cc', 275 'notifier/object_id_invalidation_map.cc',
276 'notifier/object_id_state_map.h', 276 'notifier/object_id_invalidation_map.h',
277 ], 277 ],
278 'conditions': [ 278 'conditions': [
279 ['OS != "android"', { 279 ['OS != "android"', {
280 'sources': [ 280 'sources': [
281 'notifier/invalidation_notifier.cc', 281 'notifier/invalidation_notifier.cc',
282 'notifier/invalidation_notifier.h', 282 'notifier/invalidation_notifier.h',
283 'notifier/invalidation_state_tracker.h', 283 'notifier/invalidation_state_tracker.h',
284 'notifier/non_blocking_invalidator.cc', 284 'notifier/non_blocking_invalidator.cc',
285 'notifier/non_blocking_invalidator.h', 285 'notifier/non_blocking_invalidator.h',
286 'notifier/p2p_invalidator.cc', 286 'notifier/p2p_invalidator.cc',
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 'protocol/sync_proto.gyp:sync_proto', 421 'protocol/sync_proto.gyp:sync_proto',
422 'sync', 422 'sync',
423 ], 423 ],
424 'export_dependent_settings': [ 424 'export_dependent_settings': [
425 '../testing/gmock.gyp:gmock', 425 '../testing/gmock.gyp:gmock',
426 '../testing/gtest.gyp:gtest', 426 '../testing/gtest.gyp:gtest',
427 'protocol/sync_proto.gyp:sync_proto', 427 'protocol/sync_proto.gyp:sync_proto',
428 'sync', 428 'sync',
429 ], 429 ],
430 'sources': [ 430 'sources': [
431 'internal_api/public/base/invalidation_state_test_util.cc', 431 'internal_api/public/base/invalidation_test_util.cc',
432 'internal_api/public/base/invalidation_state_test_util.h', 432 'internal_api/public/base/invalidation_test_util.h',
433 'internal_api/public/base/model_type_state_map_test_util.cc', 433 'internal_api/public/base/model_type_invalidation_map_test_util.cc',
434 'internal_api/public/base/model_type_state_map_test_util.h', 434 'internal_api/public/base/model_type_invalidation_map_test_util.h',
435 'internal_api/public/base/model_type_test_util.cc', 435 'internal_api/public/base/model_type_test_util.cc',
436 'internal_api/public/base/model_type_test_util.h', 436 'internal_api/public/base/model_type_test_util.h',
437 'js/js_test_util.cc', 437 'js/js_test_util.cc',
438 'js/js_test_util.h', 438 'js/js_test_util.h',
439 'sessions/test_util.cc', 439 'sessions/test_util.cc',
440 'sessions/test_util.h', 440 'sessions/test_util.h',
441 'syncable/syncable_mock.cc', 441 'syncable/syncable_mock.cc',
442 'syncable/syncable_mock.h', 442 'syncable/syncable_mock.h',
443 'test/callback_counter.h', 443 'test/callback_counter.h',
444 'test/engine/fake_model_worker.cc', 444 'test/engine/fake_model_worker.cc',
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 ], 491 ],
492 'sources': [ 492 'sources': [
493 'notifier/fake_invalidation_state_tracker.cc', 493 'notifier/fake_invalidation_state_tracker.cc',
494 'notifier/fake_invalidation_state_tracker.h', 494 'notifier/fake_invalidation_state_tracker.h',
495 'notifier/fake_invalidator.cc', 495 'notifier/fake_invalidator.cc',
496 'notifier/fake_invalidator.h', 496 'notifier/fake_invalidator.h',
497 'notifier/fake_invalidation_handler.cc', 497 'notifier/fake_invalidation_handler.cc',
498 'notifier/fake_invalidation_handler.h', 498 'notifier/fake_invalidation_handler.h',
499 'notifier/invalidator_test_template.cc', 499 'notifier/invalidator_test_template.cc',
500 'notifier/invalidator_test_template.h', 500 'notifier/invalidator_test_template.h',
501 'notifier/object_id_state_map_test_util.cc', 501 'notifier/object_id_invalidation_map_test_util.cc',
502 'notifier/object_id_state_map_test_util.h', 502 'notifier/object_id_invalidation_map_test_util.h',
503 ], 503 ],
504 }, 504 },
505 505
506 # Test support files for the 'syncapi_core' target. 506 # Test support files for the 'syncapi_core' target.
507 { 507 {
508 'target_name': 'test_support_syncapi_core', 508 'target_name': 'test_support_syncapi_core',
509 'type': 'static_library', 509 'type': 'static_library',
510 'variables': { 'enable_wexit_time_destructors': 1, }, 510 'variables': { 'enable_wexit_time_destructors': 1, },
511 'include_dirs': [ 511 'include_dirs': [
512 '..', 512 '..',
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 'protocol/sync_proto.gyp:sync_proto', 585 'protocol/sync_proto.gyp:sync_proto',
586 'sync', 586 'sync',
587 'test_support_sync', 587 'test_support_sync',
588 ], 588 ],
589 'direct_dependent_settings': { 589 'direct_dependent_settings': {
590 'include_dirs': [ 590 'include_dirs': [
591 '..', 591 '..',
592 ], 592 ],
593 'sources': [ 593 'sources': [
594 'internal_api/public/base/enum_set_unittest.cc', 594 'internal_api/public/base/enum_set_unittest.cc',
595 'internal_api/public/base/model_type_state_map_unittest.cc', 595 'internal_api/public/base/model_type_invalidation_map_unittest.cc',
596 'internal_api/public/base/node_ordinal_unittest.cc', 596 'internal_api/public/base/node_ordinal_unittest.cc',
597 'internal_api/public/base/ordinal_unittest.cc', 597 'internal_api/public/base/ordinal_unittest.cc',
598 'internal_api/public/engine/model_safe_worker_unittest.cc', 598 'internal_api/public/engine/model_safe_worker_unittest.cc',
599 'internal_api/public/util/immutable_unittest.cc', 599 'internal_api/public/util/immutable_unittest.cc',
600 'engine/apply_control_data_updates_unittest.cc', 600 'engine/apply_control_data_updates_unittest.cc',
601 'engine/apply_updates_command_unittest.cc', 601 'engine/apply_updates_command_unittest.cc',
602 'engine/backoff_delay_provider_unittest.cc', 602 'engine/backoff_delay_provider_unittest.cc',
603 'engine/build_commit_command_unittest.cc', 603 'engine/build_commit_command_unittest.cc',
604 'engine/download_updates_command_unittest.cc', 604 'engine/download_updates_command_unittest.cc',
605 'engine/model_changing_syncer_command_unittest.cc', 605 'engine/model_changing_syncer_command_unittest.cc',
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
882 'variables': { 882 'variables': {
883 'test_suite_name': 'sync_unit_tests', 883 'test_suite_name': 'sync_unit_tests',
884 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', 884 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)',
885 }, 885 },
886 'includes': [ '../build/apk_test.gypi' ], 886 'includes': [ '../build/apk_test.gypi' ],
887 }, 887 },
888 ], 888 ],
889 }], 889 }],
890 ], 890 ],
891 } 891 }
OLDNEW
« no previous file with comments | « sync/sessions/sync_session_unittest.cc ('k') | sync/test/engine/fake_sync_scheduler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698