| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 727 ], | 727 ], |
| 728 }, | 728 }, |
| 729 { | 729 { |
| 730 'target_name': 'notifier', | 730 'target_name': 'notifier', |
| 731 'type': '<(library)', | 731 'type': '<(library)', |
| 732 'sources': [ | 732 'sources': [ |
| 733 'browser/sync/notifier/base/async_dns_lookup.cc', | 733 'browser/sync/notifier/base/async_dns_lookup.cc', |
| 734 'browser/sync/notifier/base/async_dns_lookup.h', | 734 'browser/sync/notifier/base/async_dns_lookup.h', |
| 735 'browser/sync/notifier/base/async_network_alive.h', | 735 'browser/sync/notifier/base/async_network_alive.h', |
| 736 'browser/sync/notifier/base/fastalloc.h', | 736 'browser/sync/notifier/base/fastalloc.h', |
| 737 'browser/sync/notifier/base/linux/network_status_detector_task_linux.cc'
, | 737 'browser/sync/notifier/base/linux/async_network_alive_linux.cc', |
| 738 'browser/sync/notifier/base/mac/network_status_detector_task_mac.h', | 738 'browser/sync/notifier/base/mac/network_status_detector_task_mac.h', |
| 739 'browser/sync/notifier/base/mac/network_status_detector_task_mac.cc', | 739 'browser/sync/notifier/base/mac/network_status_detector_task_mac.cc', |
| 740 'browser/sync/notifier/base/nethelpers.cc', | 740 'browser/sync/notifier/base/nethelpers.cc', |
| 741 'browser/sync/notifier/base/nethelpers.h', | 741 'browser/sync/notifier/base/nethelpers.h', |
| 742 'browser/sync/notifier/base/network_status_detector_task.cc', | 742 'browser/sync/notifier/base/network_status_detector_task.cc', |
| 743 'browser/sync/notifier/base/network_status_detector_task.h', | 743 'browser/sync/notifier/base/network_status_detector_task.h', |
| 744 'browser/sync/notifier/base/network_status_detector_task_mt.cc', | 744 'browser/sync/notifier/base/network_status_detector_task_mt.cc', |
| 745 'browser/sync/notifier/base/network_status_detector_task_mt.h', | 745 'browser/sync/notifier/base/network_status_detector_task_mt.h', |
| 746 'browser/sync/notifier/base/posix/time_posix.cc', | 746 'browser/sync/notifier/base/posix/time_posix.cc', |
| 747 'browser/sync/notifier/base/signal_thread_task.h', | 747 'browser/sync/notifier/base/signal_thread_task.h', |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 816 '_USE_32BIT_TIME_T', | 816 '_USE_32BIT_TIME_T', |
| 817 'kXmppProductName="chromium-sync"', | 817 'kXmppProductName="chromium-sync"', |
| 818 ], | 818 ], |
| 819 'dependencies': [ | 819 'dependencies': [ |
| 820 '../third_party/expat/expat.gyp:expat', | 820 '../third_party/expat/expat.gyp:expat', |
| 821 '../third_party/libjingle/libjingle.gyp:libjingle', | 821 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 822 'sync_proto', | 822 'sync_proto', |
| 823 ], | 823 ], |
| 824 'conditions': [ | 824 'conditions': [ |
| 825 ['OS=="linux"', { | 825 ['OS=="linux"', { |
| 826 'sources!': [ | |
| 827 'browser/sync/notifier/base/network_status_detector_task_mt.cc', | |
| 828 ], | |
| 829 'dependencies': [ | 826 'dependencies': [ |
| 830 '../build/linux/system.gyp:gtk' | 827 '../build/linux/system.gyp:gtk' |
| 831 ], | 828 ], |
| 832 }], | 829 }], |
| 833 ], | 830 ], |
| 834 }, | 831 }, |
| 835 { | 832 { |
| 836 'target_name': 'sync', | 833 'target_name': 'sync', |
| 837 'type': '<(library)', | 834 'type': '<(library)', |
| 838 'sources': [ | 835 'sources': [ |
| (...skipping 758 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1597 }], # targets | 1594 }], # targets |
| 1598 }], # OS=="linux" or OS=="freebsd" | 1595 }], # OS=="linux" or OS=="freebsd" |
| 1599 ], # 'conditions' | 1596 ], # 'conditions' |
| 1600 } | 1597 } |
| 1601 | 1598 |
| 1602 # Local Variables: | 1599 # Local Variables: |
| 1603 # tab-width:2 | 1600 # tab-width:2 |
| 1604 # indent-tabs-mode:nil | 1601 # indent-tabs-mode:nil |
| 1605 # End: | 1602 # End: |
| 1606 # vim: set expandtab tabstop=2 shiftwidth=2: | 1603 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |