| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'targets': [ | 6 'targets': [ |
| 7 # Test support files for the 'sync_core' target. | 7 # Test support files for the 'sync_core' target. |
| 8 { | 8 { |
| 9 'target_name': 'test_support_sync_core', | 9 'target_name': 'test_support_sync_core', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 'variables': { 'enable_wexit_time_destructors': 1, }, | 161 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 162 'include_dirs': [ | 162 'include_dirs': [ |
| 163 '..', | 163 '..', |
| 164 ], | 164 ], |
| 165 'defines': [ | 165 'defines': [ |
| 166 'SYNC_TEST' | 166 'SYNC_TEST' |
| 167 ], | 167 ], |
| 168 'dependencies': [ | 168 'dependencies': [ |
| 169 '../base/base.gyp:base', | 169 '../base/base.gyp:base', |
| 170 '../testing/gtest.gyp:gtest', | 170 '../testing/gtest.gyp:gtest', |
| 171 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', | |
| 172 'sync', | 171 'sync', |
| 173 'test_support_sync_core', | 172 'test_support_sync_core', |
| 174 ], | 173 ], |
| 175 'export_dependent_settings': [ | 174 'export_dependent_settings': [ |
| 176 '../testing/gtest.gyp:gtest', | 175 '../testing/gtest.gyp:gtest', |
| 177 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', | |
| 178 'sync', | 176 'sync', |
| 179 'test_support_sync_core', | 177 'test_support_sync_core', |
| 180 ], | 178 ], |
| 181 'sources': [ | 179 'sources': [ |
| 182 'internal_api/public/base/invalidation_test_util.cc', | |
| 183 'internal_api/public/base/invalidation_test_util.h', | |
| 184 'internal_api/public/test/fake_sync_manager.h', | 180 'internal_api/public/test/fake_sync_manager.h', |
| 185 'internal_api/public/test/null_sync_context_proxy.h', | 181 'internal_api/public/test/null_sync_context_proxy.h', |
| 186 'internal_api/public/test/sync_manager_factory_for_profile_sync_test.h', | 182 'internal_api/public/test/sync_manager_factory_for_profile_sync_test.h', |
| 187 'internal_api/public/test/test_entry_factory.h', | 183 'internal_api/public/test/test_entry_factory.h', |
| 188 'internal_api/public/test/test_internal_components_factory.h', | 184 'internal_api/public/test/test_internal_components_factory.h', |
| 189 'internal_api/public/test/test_user_share.h', | 185 'internal_api/public/test/test_user_share.h', |
| 190 'internal_api/test/fake_sync_manager.cc', | 186 'internal_api/test/fake_sync_manager.cc', |
| 191 'internal_api/test/null_sync_context_proxy.cc', | 187 'internal_api/test/null_sync_context_proxy.cc', |
| 192 'internal_api/test/sync_manager_factory_for_profile_sync_test.cc', | 188 'internal_api/test/sync_manager_factory_for_profile_sync_test.cc', |
| 193 'internal_api/test/sync_manager_for_profile_sync_test.cc', | 189 'internal_api/test/sync_manager_for_profile_sync_test.cc', |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 557 ], | 553 ], |
| 558 'variables': { | 554 'variables': { |
| 559 'test_suite_name': 'sync_unit_tests', | 555 'test_suite_name': 'sync_unit_tests', |
| 560 }, | 556 }, |
| 561 'includes': [ '../build/apk_test.gypi' ], | 557 'includes': [ '../build/apk_test.gypi' ], |
| 562 }, | 558 }, |
| 563 ], | 559 ], |
| 564 }], | 560 }], |
| 565 ], | 561 ], |
| 566 } | 562 } |
| OLD | NEW |