OLD | NEW |
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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 'syncable/entry_kernel.cc', | 132 'syncable/entry_kernel.cc', |
133 'syncable/entry_kernel.h', | 133 'syncable/entry_kernel.h', |
134 'syncable/in_memory_directory_backing_store.cc', | 134 'syncable/in_memory_directory_backing_store.cc', |
135 'syncable/in_memory_directory_backing_store.h', | 135 'syncable/in_memory_directory_backing_store.h', |
136 'syncable/invalid_directory_backing_store.cc', | 136 'syncable/invalid_directory_backing_store.cc', |
137 'syncable/invalid_directory_backing_store.h', | 137 'syncable/invalid_directory_backing_store.h', |
138 'syncable/metahandle_set.h', | 138 'syncable/metahandle_set.h', |
139 'syncable/model_type.cc', | 139 'syncable/model_type.cc', |
140 'syncable/mutable_entry.cc', | 140 'syncable/mutable_entry.cc', |
141 'syncable/mutable_entry.h', | 141 'syncable/mutable_entry.h', |
| 142 'syncable/nigori_handler.cc', |
142 'syncable/nigori_handler.h', | 143 'syncable/nigori_handler.h', |
143 'syncable/nigori_handler.cc', | |
144 'syncable/nigori_util.cc', | 144 'syncable/nigori_util.cc', |
145 'syncable/nigori_util.h', | 145 'syncable/nigori_util.h', |
146 'syncable/on_disk_directory_backing_store.cc', | 146 'syncable/on_disk_directory_backing_store.cc', |
147 'syncable/on_disk_directory_backing_store.h', | 147 'syncable/on_disk_directory_backing_store.h', |
148 'syncable/read_transaction.cc', | 148 'syncable/read_transaction.cc', |
149 'syncable/read_transaction.h', | 149 'syncable/read_transaction.h', |
150 'syncable/scoped_kernel_lock.h', | 150 'syncable/scoped_kernel_lock.h', |
151 'syncable/syncable-inl.h', | 151 'syncable/syncable-inl.h', |
152 'syncable/syncable_changes_version.h', | 152 'syncable/syncable_changes_version.h', |
153 'syncable/syncable_columns.h', | 153 'syncable/syncable_columns.h', |
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
491 'test/engine/test_directory_setter_upper.h', | 491 'test/engine/test_directory_setter_upper.h', |
492 'test/engine/test_id_factory.h', | 492 'test/engine/test_id_factory.h', |
493 'test/engine/test_syncable_utils.cc', | 493 'test/engine/test_syncable_utils.cc', |
494 'test/engine/test_syncable_utils.h', | 494 'test/engine/test_syncable_utils.h', |
495 'test/fake_encryptor.cc', | 495 'test/fake_encryptor.cc', |
496 'test/fake_encryptor.h', | 496 'test/fake_encryptor.h', |
497 'test/fake_sync_encryption_handler.h', | 497 'test/fake_sync_encryption_handler.h', |
498 'test/fake_sync_encryption_handler.cc', | 498 'test/fake_sync_encryption_handler.cc', |
499 'test/fake_extensions_activity_monitor.cc', | 499 'test/fake_extensions_activity_monitor.cc', |
500 'test/fake_extensions_activity_monitor.h', | 500 'test/fake_extensions_activity_monitor.h', |
| 501 'test/test_transaction_observer.cc', |
| 502 'test/test_transaction_observer.h', |
501 'test/null_directory_change_delegate.cc', | 503 'test/null_directory_change_delegate.cc', |
502 'test/null_directory_change_delegate.h', | 504 'test/null_directory_change_delegate.h', |
503 'test/null_transaction_observer.cc', | 505 'test/null_transaction_observer.cc', |
504 'test/null_transaction_observer.h', | 506 'test/null_transaction_observer.h', |
505 'test/sessions/test_scoped_session_event_listener.h', | 507 'test/sessions/test_scoped_session_event_listener.h', |
506 'test/test_directory_backing_store.cc', | 508 'test/test_directory_backing_store.cc', |
507 'test/test_directory_backing_store.h', | 509 'test/test_directory_backing_store.h', |
508 'util/test_unrecoverable_error_handler.cc', | 510 'util/test_unrecoverable_error_handler.cc', |
509 'util/test_unrecoverable_error_handler.h', | 511 'util/test_unrecoverable_error_handler.h', |
510 ], | 512 ], |
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
965 'variables': { | 967 'variables': { |
966 'test_suite_name': 'sync_unit_tests', | 968 'test_suite_name': 'sync_unit_tests', |
967 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit
_tests<(SHARED_LIB_SUFFIX)', | 969 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit
_tests<(SHARED_LIB_SUFFIX)', |
968 }, | 970 }, |
969 'includes': [ '../build/apk_test.gypi' ], | 971 'includes': [ '../build/apk_test.gypi' ], |
970 }, | 972 }, |
971 ], | 973 ], |
972 }], | 974 }], |
973 ], | 975 ], |
974 } | 976 } |
OLD | NEW |