| 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 }, # variables | 8 }, # variables |
| 9 'targets': [ | 9 'targets': [ |
| 10 # A library for sending and receiving peer-issued notifications. | 10 # A library for sending and receiving peer-issued notifications. |
| 11 # | 11 # |
| 12 # TODO(akalin): Separate out the XMPP stuff from this library into | 12 # TODO(akalin): Separate out the XMPP stuff from this library into |
| 13 # its own library. | 13 # its own library. |
| 14 { | 14 { |
| 15 'target_name': 'notifier', | 15 'target_name': 'notifier', |
| 16 'type': '<(library)', | 16 'type': '<(library)', |
| 17 'sources': [ | 17 'sources': [ |
| 18 'notifier/base/chrome_async_socket.cc', | 18 'notifier/base/chrome_async_socket.cc', |
| 19 'notifier/base/chrome_async_socket.h', | 19 'notifier/base/chrome_async_socket.h', |
| 20 'notifier/base/signal_thread_task.h', | |
| 21 'notifier/base/ssl_adapter.h', | |
| 22 'notifier/base/ssl_adapter.cc', | |
| 23 'notifier/base/fake_ssl_client_socket.cc', | 20 'notifier/base/fake_ssl_client_socket.cc', |
| 24 'notifier/base/fake_ssl_client_socket.h', | 21 'notifier/base/fake_ssl_client_socket.h', |
| 25 'notifier/base/notification_method.h', | 22 'notifier/base/notification_method.h', |
| 26 'notifier/base/notification_method.cc', | 23 'notifier/base/notification_method.cc', |
| 27 'notifier/base/notifier_options.h', | 24 'notifier/base/notifier_options.h', |
| 28 'notifier/base/static_assert.h', | |
| 29 'notifier/base/task_pump.cc', | 25 'notifier/base/task_pump.cc', |
| 30 'notifier/base/task_pump.h', | 26 'notifier/base/task_pump.h', |
| 31 'notifier/base/xmpp_client_socket_factory.cc', | 27 'notifier/base/xmpp_client_socket_factory.cc', |
| 32 'notifier/base/xmpp_client_socket_factory.h', | 28 'notifier/base/xmpp_client_socket_factory.h', |
| 33 'notifier/communicator/connection_options.cc', | 29 'notifier/communicator/connection_options.cc', |
| 34 'notifier/communicator/connection_options.h', | 30 'notifier/communicator/connection_options.h', |
| 35 'notifier/communicator/connection_settings.cc', | 31 'notifier/communicator/connection_settings.cc', |
| 36 'notifier/communicator/connection_settings.h', | 32 'notifier/communicator/connection_settings.h', |
| 37 'notifier/communicator/const_communicator.h', | 33 'notifier/communicator/const_communicator.h', |
| 38 'notifier/communicator/gaia_token_pre_xmpp_auth.cc', | 34 'notifier/communicator/gaia_token_pre_xmpp_auth.cc', |
| 39 'notifier/communicator/gaia_token_pre_xmpp_auth.h', | 35 'notifier/communicator/gaia_token_pre_xmpp_auth.h', |
| 40 'notifier/communicator/login.cc', | 36 'notifier/communicator/login.cc', |
| 41 'notifier/communicator/login.h', | 37 'notifier/communicator/login.h', |
| 42 'notifier/communicator/login_connection_state.h', | 38 'notifier/communicator/login_connection_state.h', |
| 43 'notifier/communicator/login_failure.cc', | 39 'notifier/communicator/login_failure.cc', |
| 44 'notifier/communicator/login_failure.h', | 40 'notifier/communicator/login_failure.h', |
| 45 'notifier/communicator/login_settings.cc', | 41 'notifier/communicator/login_settings.cc', |
| 46 'notifier/communicator/login_settings.h', | 42 'notifier/communicator/login_settings.h', |
| 47 'notifier/communicator/product_info.cc', | |
| 48 'notifier/communicator/product_info.h', | |
| 49 'notifier/communicator/single_login_attempt.cc', | 43 'notifier/communicator/single_login_attempt.cc', |
| 50 'notifier/communicator/single_login_attempt.h', | 44 'notifier/communicator/single_login_attempt.h', |
| 51 'notifier/communicator/ssl_socket_adapter.cc', | |
| 52 'notifier/communicator/ssl_socket_adapter.h', | |
| 53 'notifier/communicator/xmpp_connection_generator.cc', | 45 'notifier/communicator/xmpp_connection_generator.cc', |
| 54 'notifier/communicator/xmpp_connection_generator.h', | 46 'notifier/communicator/xmpp_connection_generator.h', |
| 55 'notifier/communicator/xmpp_socket_adapter.cc', | |
| 56 'notifier/communicator/xmpp_socket_adapter.h', | |
| 57 'notifier/listener/listen_task.cc', | 47 'notifier/listener/listen_task.cc', |
| 58 'notifier/listener/listen_task.h', | 48 'notifier/listener/listen_task.h', |
| 59 'notifier/listener/mediator_thread.h', | 49 'notifier/listener/mediator_thread.h', |
| 60 'notifier/listener/mediator_thread_impl.cc', | 50 'notifier/listener/mediator_thread_impl.cc', |
| 61 'notifier/listener/mediator_thread_impl.h', | 51 'notifier/listener/mediator_thread_impl.h', |
| 62 'notifier/listener/mediator_thread_mock.h', | 52 'notifier/listener/mediator_thread_mock.h', |
| 63 'notifier/listener/notification_constants.cc', | 53 'notifier/listener/notification_constants.cc', |
| 64 'notifier/listener/notification_constants.h', | 54 'notifier/listener/notification_constants.h', |
| 65 'notifier/listener/notification_defines.h', | 55 'notifier/listener/notification_defines.h', |
| 66 'notifier/listener/send_update_task.cc', | 56 'notifier/listener/send_update_task.cc', |
| 67 'notifier/listener/send_update_task.h', | 57 'notifier/listener/send_update_task.h', |
| 68 'notifier/base/sigslotrepeater.h', | 58 'notifier/base/sigslotrepeater.h', |
| 69 'notifier/listener/subscribe_task.cc', | 59 'notifier/listener/subscribe_task.cc', |
| 70 'notifier/listener/subscribe_task.h', | 60 'notifier/listener/subscribe_task.h', |
| 71 'notifier/listener/talk_mediator.h', | 61 'notifier/listener/talk_mediator.h', |
| 72 'notifier/listener/talk_mediator_impl.cc', | 62 'notifier/listener/talk_mediator_impl.cc', |
| 73 'notifier/listener/talk_mediator_impl.h', | 63 'notifier/listener/talk_mediator_impl.h', |
| 74 'notifier/listener/xml_element_util.cc', | 64 'notifier/listener/xml_element_util.cc', |
| 75 'notifier/listener/xml_element_util.h', | 65 'notifier/listener/xml_element_util.h', |
| 76 ], | 66 ], |
| 77 'defines' : [ | 67 'defines' : [ |
| 78 '_CRT_SECURE_NO_WARNINGS', | 68 '_CRT_SECURE_NO_WARNINGS', |
| 79 '_USE_32BIT_TIME_T', | 69 '_USE_32BIT_TIME_T', |
| 80 'kXmppProductName="chromium-sync"', | |
| 81 ], | 70 ], |
| 82 'dependencies': [ | 71 'dependencies': [ |
| 83 '../base/base.gyp:base', | 72 '../base/base.gyp:base', |
| 84 '../net/net.gyp:net', | 73 '../net/net.gyp:net', |
| 85 '../third_party/expat/expat.gyp:expat', | 74 '../third_party/expat/expat.gyp:expat', |
| 86 '../third_party/libjingle/libjingle.gyp:libjingle', | 75 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 87 ], | 76 ], |
| 88 'export_dependent_settings': [ | 77 'export_dependent_settings': [ |
| 89 '../third_party/libjingle/libjingle.gyp:libjingle', | 78 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 90 ], | 79 ], |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 ], | 125 ], |
| 137 }, | 126 }, |
| 138 ], | 127 ], |
| 139 } | 128 } |
| 140 | 129 |
| 141 # Local Variables: | 130 # Local Variables: |
| 142 # tab-width:2 | 131 # tab-width:2 |
| 143 # indent-tabs-mode:nil | 132 # indent-tabs-mode:nil |
| 144 # End: | 133 # End: |
| 145 # vim: set expandtab tabstop=2 shiftwidth=2: | 134 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |