| 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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 ], | 206 ], |
| 207 'sources': [ | 207 'sources': [ |
| 208 'notifier/sync_notifier.h', | 208 'notifier/sync_notifier.h', |
| 209 'notifier/sync_notifier_factory.h', | 209 'notifier/sync_notifier_factory.h', |
| 210 'notifier/sync_notifier_factory.cc', | 210 'notifier/sync_notifier_factory.cc', |
| 211 'notifier/sync_notifier_observer.h', | 211 'notifier/sync_notifier_observer.h', |
| 212 ], | 212 ], |
| 213 'conditions': [ | 213 'conditions': [ |
| 214 ['OS != "android"', { | 214 ['OS != "android"', { |
| 215 'sources': [ | 215 'sources': [ |
| 216 'notifier/cache_invalidation_packet_handler.cc', | |
| 217 'notifier/cache_invalidation_packet_handler.h', | |
| 218 'notifier/chrome_invalidation_client.cc', | 216 'notifier/chrome_invalidation_client.cc', |
| 219 'notifier/chrome_invalidation_client.h', | 217 'notifier/chrome_invalidation_client.h', |
| 220 'notifier/chrome_system_resources.cc', | 218 'notifier/chrome_system_resources.cc', |
| 221 'notifier/chrome_system_resources.h', | 219 'notifier/chrome_system_resources.h', |
| 222 'notifier/invalidation_notifier.h', | 220 'notifier/invalidation_notifier.h', |
| 223 'notifier/invalidation_notifier.cc', | 221 'notifier/invalidation_notifier.cc', |
| 224 'notifier/invalidation_util.cc', | 222 'notifier/invalidation_util.cc', |
| 225 'notifier/invalidation_util.h', | 223 'notifier/invalidation_util.h', |
| 226 'notifier/invalidation_state_tracker.h', | 224 'notifier/invalidation_state_tracker.h', |
| 227 'notifier/non_blocking_invalidation_notifier.h', | 225 'notifier/non_blocking_invalidation_notifier.h', |
| 228 'notifier/non_blocking_invalidation_notifier.cc', | 226 'notifier/non_blocking_invalidation_notifier.cc', |
| 229 'notifier/p2p_notifier.h', | 227 'notifier/p2p_notifier.h', |
| 230 'notifier/p2p_notifier.cc', | 228 'notifier/p2p_notifier.cc', |
| 229 'notifier/push_client_channel.cc', |
| 230 'notifier/push_client_channel.h', |
| 231 'notifier/registration_manager.cc', | 231 'notifier/registration_manager.cc', |
| 232 'notifier/registration_manager.h', | 232 'notifier/registration_manager.h', |
| 233 'notifier/state_writer.h', | 233 'notifier/state_writer.h', |
| 234 ], | 234 ], |
| 235 }], | 235 }], |
| 236 ], | 236 ], |
| 237 }, | 237 }, |
| 238 | 238 |
| 239 # The sync internal API library. | 239 # The sync internal API library. |
| 240 { | 240 { |
| (...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 579 'variables': { 'enable_wexit_time_destructors': 1, }, | 579 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 580 'include_dirs': [ | 580 'include_dirs': [ |
| 581 '..', | 581 '..', |
| 582 ], | 582 ], |
| 583 'sources': [ | 583 'sources': [ |
| 584 'notifier/sync_notifier_factory_unittest.cc', | 584 'notifier/sync_notifier_factory_unittest.cc', |
| 585 ], | 585 ], |
| 586 'conditions': [ | 586 'conditions': [ |
| 587 ['OS != "android"', { | 587 ['OS != "android"', { |
| 588 'sources': [ | 588 'sources': [ |
| 589 'notifier/cache_invalidation_packet_handler_unittest.cc', | |
| 590 'notifier/chrome_invalidation_client_unittest.cc', | 589 'notifier/chrome_invalidation_client_unittest.cc', |
| 591 'notifier/chrome_system_resources_unittest.cc', | 590 'notifier/chrome_system_resources_unittest.cc', |
| 592 'notifier/invalidation_notifier_unittest.cc', | 591 'notifier/invalidation_notifier_unittest.cc', |
| 593 'notifier/non_blocking_invalidation_notifier_unittest.cc', | 592 'notifier/non_blocking_invalidation_notifier_unittest.cc', |
| 594 'notifier/p2p_notifier_unittest.cc', | 593 'notifier/p2p_notifier_unittest.cc', |
| 594 'notifier/push_client_channel_unittest.cc', |
| 595 'notifier/registration_manager_unittest.cc', | 595 'notifier/registration_manager_unittest.cc', |
| 596 ], | 596 ], |
| 597 }], | 597 }], |
| 598 ], | 598 ], |
| 599 }, | 599 }, |
| 600 }, | 600 }, |
| 601 | 601 |
| 602 # Unit tests for the 'syncapi_core' target. This cannot be a static | 602 # Unit tests for the 'syncapi_core' target. This cannot be a static |
| 603 # library because the unit test files have to be compiled directly | 603 # library because the unit test files have to be compiled directly |
| 604 # into the executable, so we push the target files to the | 604 # into the executable, so we push the target files to the |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 728 '../net/net.gyp:net_test_support', | 728 '../net/net.gyp:net_test_support', |
| 729 'sync', | 729 'sync', |
| 730 'sync_notifier', | 730 'sync_notifier', |
| 731 ], | 731 ], |
| 732 'sources': [ | 732 'sources': [ |
| 733 'tools/sync_listen_notifications.cc', | 733 'tools/sync_listen_notifications.cc', |
| 734 ], | 734 ], |
| 735 }, | 735 }, |
| 736 ], | 736 ], |
| 737 } | 737 } |
| OLD | NEW |