| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'variables': { | 9 'variables': { |
| 10 'version_py_path': 'tools/build/version.py', | 10 'version_py_path': 'tools/build/version.py', |
| (...skipping 5192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5203 'dependencies': [ | 5203 'dependencies': [ |
| 5204 '../build/linux/system.gyp:gtk' | 5204 '../build/linux/system.gyp:gtk' |
| 5205 ], | 5205 ], |
| 5206 }], | 5206 }], |
| 5207 ], | 5207 ], |
| 5208 }, | 5208 }, |
| 5209 { | 5209 { |
| 5210 'target_name': 'sync_unit_tests', | 5210 'target_name': 'sync_unit_tests', |
| 5211 'type': 'executable', | 5211 'type': 'executable', |
| 5212 'sources': [ | 5212 'sources': [ |
| 5213 'app/breakpad_mac_stubs.mm', |
| 5214 'app/keystone_glue.mm', |
| 5213 'browser/sync/engine/all_status_unittest.cc', | 5215 'browser/sync/engine/all_status_unittest.cc', |
| 5214 'browser/sync/engine/apply_updates_command_unittest.cc', | 5216 'browser/sync/engine/apply_updates_command_unittest.cc', |
| 5215 'browser/sync/engine/auth_watcher_unittest.cc', | 5217 'browser/sync/engine/auth_watcher_unittest.cc', |
| 5216 'browser/sync/engine/net/gaia_authenticator_unittest.cc', | 5218 'browser/sync/engine/net/gaia_authenticator_unittest.cc', |
| 5217 'browser/sync/engine/syncer_proto_util_unittest.cc', | 5219 'browser/sync/engine/syncer_proto_util_unittest.cc', |
| 5218 'browser/sync/engine/syncer_thread_unittest.cc', | 5220 'browser/sync/engine/syncer_thread_unittest.cc', |
| 5219 'browser/sync/engine/syncer_unittest.cc', | 5221 'browser/sync/engine/syncer_unittest.cc', |
| 5220 'browser/sync/engine/syncproto_unittest.cc', | 5222 'browser/sync/engine/syncproto_unittest.cc', |
| 5221 'browser/sync/notifier/listener/talk_mediator_unittest.cc', | 5223 'browser/sync/notifier/listener/talk_mediator_unittest.cc', |
| 5222 'browser/sync/syncable/syncable_id_unittest.cc', | 5224 'browser/sync/syncable/syncable_id_unittest.cc', |
| 5223 'browser/sync/syncable/syncable_unittest.cc', | 5225 'browser/sync/syncable/syncable_unittest.cc', |
| 5224 'browser/sync/util/character_set_converters_unittest.cc', | 5226 'browser/sync/util/character_set_converters_unittest.cc', |
| 5225 'browser/sync/util/crypto_helpers_unittest.cc', | 5227 'browser/sync/util/crypto_helpers_unittest.cc', |
| 5226 'browser/sync/util/event_sys_unittest.cc', | 5228 'browser/sync/util/event_sys_unittest.cc', |
| 5229 'browser/sync/util/extensions_activity_monitor_unittest.cc', |
| 5227 'browser/sync/util/highres_timer_unittest.cc', | 5230 'browser/sync/util/highres_timer_unittest.cc', |
| 5228 'browser/sync/util/path_helpers_unittest.cc', | 5231 'browser/sync/util/path_helpers_unittest.cc', |
| 5229 'browser/sync/util/query_helpers_unittest.cc', | 5232 'browser/sync/util/query_helpers_unittest.cc', |
| 5230 'browser/sync/util/user_settings_unittest.cc', | 5233 'browser/sync/util/user_settings_unittest.cc', |
| 5231 'test/sync/engine/mock_gaia_authenticator.cc', | 5234 'test/sync/engine/mock_gaia_authenticator.cc', |
| 5232 'test/sync/engine/mock_gaia_authenticator.h', | 5235 'test/sync/engine/mock_gaia_authenticator.h', |
| 5233 'test/sync/engine/mock_gaia_authenticator_unittest.cc', | 5236 'test/sync/engine/mock_gaia_authenticator_unittest.cc', |
| 5234 'test/sync/engine/mock_server_connection.cc', | 5237 'test/sync/engine/mock_server_connection.cc', |
| 5235 'test/sync/engine/mock_server_connection.h', | 5238 'test/sync/engine/mock_server_connection.h', |
| 5236 'test/sync/engine/test_directory_setter_upper.cc', | 5239 'test/sync/engine/test_directory_setter_upper.cc', |
| 5237 'test/sync/engine/test_directory_setter_upper.h', | 5240 'test/sync/engine/test_directory_setter_upper.h', |
| 5238 'test/sync/engine/test_id_factory.h', | 5241 'test/sync/engine/test_id_factory.h', |
| 5239 ], | 5242 ], |
| 5240 'include_dirs': [ | 5243 'include_dirs': [ |
| 5241 '..', | 5244 '..', |
| 5242 '<(protoc_out_dir)', | 5245 '<(protoc_out_dir)', |
| 5243 ], | 5246 ], |
| 5244 'defines' : [ | 5247 'defines' : [ |
| 5245 'SYNC_ENGINE_VERSION_STRING="Unknown"', | 5248 'SYNC_ENGINE_VERSION_STRING="Unknown"', |
| 5246 '_CRT_SECURE_NO_WARNINGS', | 5249 '_CRT_SECURE_NO_WARNINGS', |
| 5247 '_USE_32BIT_TIME_T', | 5250 '_USE_32BIT_TIME_T', |
| 5248 ], | 5251 ], |
| 5249 'dependencies': [ | 5252 'dependencies': [ |
| 5250 '../testing/gtest.gyp:gtest', | 5253 'common', |
| 5251 '../third_party/libjingle/libjingle.gyp:libjingle', | 5254 'debugger', |
| 5252 'notifier', | 5255 '../skia/skia.gyp:skia', |
| 5253 'sync', | 5256 '../testing/gtest.gyp:gtest', |
| 5254 'sync_proto', | 5257 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 5255 'test_support_unit', | 5258 'syncapi', |
| 5259 'sync_proto', |
| 5260 'test_support_unit', |
| 5256 ], | 5261 ], |
| 5257 'conditions': [ | 5262 'conditions': [ |
| 5258 ['OS=="win"', { | 5263 ['OS=="win"', { |
| 5259 'sources' : [ | 5264 'sources' : [ |
| 5260 'browser/sync/util/data_encryption_unittest.cc', | 5265 'browser/sync/util/data_encryption_unittest.cc', |
| 5261 ], | 5266 ], |
| 5262 'dependencies': [ | 5267 'dependencies': [ |
| 5263 '../third_party/tcmalloc/tcmalloc.gyp:tcmalloc', | 5268 '../third_party/tcmalloc/tcmalloc.gyp:tcmalloc', |
| 5264 ], | 5269 ], |
| 5265 'link_settings': { | 5270 'link_settings': { |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5382 'browser/sync/util/character_set_converters_win.cc', | 5387 'browser/sync/util/character_set_converters_win.cc', |
| 5383 'browser/sync/util/closure.h', | 5388 'browser/sync/util/closure.h', |
| 5384 'browser/sync/util/compat_file.h', | 5389 'browser/sync/util/compat_file.h', |
| 5385 'browser/sync/util/compat_file_posix.cc', | 5390 'browser/sync/util/compat_file_posix.cc', |
| 5386 'browser/sync/util/compat_file_win.cc', | 5391 'browser/sync/util/compat_file_win.cc', |
| 5387 'browser/sync/util/crypto_helpers.cc', | 5392 'browser/sync/util/crypto_helpers.cc', |
| 5388 'browser/sync/util/crypto_helpers.h', | 5393 'browser/sync/util/crypto_helpers.h', |
| 5389 'browser/sync/util/dbgq.h', | 5394 'browser/sync/util/dbgq.h', |
| 5390 'browser/sync/util/event_sys-inl.h', | 5395 'browser/sync/util/event_sys-inl.h', |
| 5391 'browser/sync/util/event_sys.h', | 5396 'browser/sync/util/event_sys.h', |
| 5397 'browser/sync/util/extensions_activity_monitor.cc', |
| 5398 'browser/sync/util/extensions_activity_monitor.h', |
| 5392 'browser/sync/util/fast_dump.h', | 5399 'browser/sync/util/fast_dump.h', |
| 5393 'browser/sync/util/highres_timer.h', | 5400 'browser/sync/util/highres_timer.h', |
| 5394 'browser/sync/util/highres_timer_linux.cc', | 5401 'browser/sync/util/highres_timer_linux.cc', |
| 5395 'browser/sync/util/highres_timer_linux.h', | 5402 'browser/sync/util/highres_timer_linux.h', |
| 5396 'browser/sync/util/highres_timer_mac.cc', | 5403 'browser/sync/util/highres_timer_mac.cc', |
| 5397 'browser/sync/util/highres_timer_mac.h', | 5404 'browser/sync/util/highres_timer_mac.h', |
| 5398 'browser/sync/util/highres_timer_win.cc', | 5405 'browser/sync/util/highres_timer_win.cc', |
| 5399 'browser/sync/util/highres_timer_win.h', | 5406 'browser/sync/util/highres_timer_win.h', |
| 5400 'browser/sync/util/path_helpers.h', | 5407 'browser/sync/util/path_helpers.h', |
| 5401 'browser/sync/util/path_helpers_linux.cc', | 5408 'browser/sync/util/path_helpers_linux.cc', |
| (...skipping 12 matching lines...) Expand all Loading... |
| 5414 'include_dirs': [ | 5421 'include_dirs': [ |
| 5415 '..', | 5422 '..', |
| 5416 '<(protoc_out_dir)', | 5423 '<(protoc_out_dir)', |
| 5417 ], | 5424 ], |
| 5418 'defines' : [ | 5425 'defines' : [ |
| 5419 'SYNC_ENGINE_VERSION_STRING="Unknown"', | 5426 'SYNC_ENGINE_VERSION_STRING="Unknown"', |
| 5420 '_CRT_SECURE_NO_WARNINGS', | 5427 '_CRT_SECURE_NO_WARNINGS', |
| 5421 '_USE_32BIT_TIME_T', | 5428 '_USE_32BIT_TIME_T', |
| 5422 ], | 5429 ], |
| 5423 'dependencies': [ | 5430 'dependencies': [ |
| 5431 '../skia/skia.gyp:skia', |
| 5424 '../third_party/libjingle/libjingle.gyp:libjingle', | 5432 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 5425 'sync_proto', | 5433 'sync_proto', |
| 5426 ], | 5434 ], |
| 5427 'conditions': [ | 5435 'conditions': [ |
| 5428 ['OS=="win"', { | 5436 ['OS=="win"', { |
| 5429 'sources' : [ | 5437 'sources' : [ |
| 5430 'browser/sync/util/data_encryption.cc', | 5438 'browser/sync/util/data_encryption.cc', |
| 5431 'browser/sync/util/data_encryption.h', | 5439 'browser/sync/util/data_encryption.h', |
| 5432 'browser/sync/util/path_helpers.cc', | 5440 'browser/sync/util/path_helpers.cc', |
| 5433 ], | 5441 ], |
| (...skipping 1511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6945 ] | 6953 ] |
| 6946 }], | 6954 }], |
| 6947 ], # 'conditions' | 6955 ], # 'conditions' |
| 6948 } | 6956 } |
| 6949 | 6957 |
| 6950 # Local Variables: | 6958 # Local Variables: |
| 6951 # tab-width:2 | 6959 # tab-width:2 |
| 6952 # indent-tabs-mode:nil | 6960 # indent-tabs-mode:nil |
| 6953 # End: | 6961 # End: |
| 6954 # vim: set expandtab tabstop=2 shiftwidth=2: | 6962 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |