| 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/fake_ssl_client_socket.cc', | 20 'notifier/base/fake_ssl_client_socket.cc', |
| 21 'notifier/base/fake_ssl_client_socket.h', | 21 'notifier/base/fake_ssl_client_socket.h', |
| 22 'notifier/base/notification_method.h', | 22 'notifier/base/notification_method.h', |
| 23 'notifier/base/notification_method.cc', | 23 'notifier/base/notification_method.cc', |
| 24 'notifier/base/notifier_options.cc', |
| 24 'notifier/base/notifier_options.h', | 25 'notifier/base/notifier_options.h', |
| 25 'notifier/base/task_pump.cc', | 26 'notifier/base/task_pump.cc', |
| 26 'notifier/base/task_pump.h', | 27 'notifier/base/task_pump.h', |
| 27 'notifier/base/weak_xmpp_client.cc', | 28 'notifier/base/weak_xmpp_client.cc', |
| 28 'notifier/base/weak_xmpp_client.h', | 29 'notifier/base/weak_xmpp_client.h', |
| 29 'notifier/base/xmpp_client_socket_factory.cc', | 30 'notifier/base/xmpp_client_socket_factory.cc', |
| 30 'notifier/base/xmpp_client_socket_factory.h', | 31 'notifier/base/xmpp_client_socket_factory.h', |
| 31 'notifier/base/xmpp_connection.cc', | 32 'notifier/base/xmpp_connection.cc', |
| 32 'notifier/base/xmpp_connection.h', | 33 'notifier/base/xmpp_connection.h', |
| 33 'notifier/communicator/connection_options.cc', | 34 'notifier/communicator/connection_options.cc', |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 ], | 152 ], |
| 152 }, | 153 }, |
| 153 ], | 154 ], |
| 154 } | 155 } |
| 155 | 156 |
| 156 # Local Variables: | 157 # Local Variables: |
| 157 # tab-width:2 | 158 # tab-width:2 |
| 158 # indent-tabs-mode:nil | 159 # indent-tabs-mode:nil |
| 159 # End: | 160 # End: |
| 160 # vim: set expandtab tabstop=2 shiftwidth=2: | 161 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |