Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(737)

Side by Side Diff: jingle/jingle.gyp

Issue 6881042: [Sync] Fix race condition in P2PNotifier with sending notifications (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 of various utils for integration with libjingle. 10 # A library of various utils for integration with libjingle.
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 'notifier/communicator/login_settings.h', 73 'notifier/communicator/login_settings.h',
74 'notifier/communicator/single_login_attempt.cc', 74 'notifier/communicator/single_login_attempt.cc',
75 'notifier/communicator/single_login_attempt.h', 75 'notifier/communicator/single_login_attempt.h',
76 'notifier/communicator/xmpp_connection_generator.cc', 76 'notifier/communicator/xmpp_connection_generator.cc',
77 'notifier/communicator/xmpp_connection_generator.h', 77 'notifier/communicator/xmpp_connection_generator.h',
78 'notifier/listener/mediator_thread.h', 78 'notifier/listener/mediator_thread.h',
79 'notifier/listener/mediator_thread_impl.cc', 79 'notifier/listener/mediator_thread_impl.cc',
80 'notifier/listener/mediator_thread_impl.h', 80 'notifier/listener/mediator_thread_impl.h',
81 'notifier/listener/notification_constants.cc', 81 'notifier/listener/notification_constants.cc',
82 'notifier/listener/notification_constants.h', 82 'notifier/listener/notification_constants.h',
83 'notifier/listener/notification_defines.cc',
83 'notifier/listener/notification_defines.h', 84 'notifier/listener/notification_defines.h',
84 'notifier/listener/push_notifications_listen_task.cc', 85 'notifier/listener/push_notifications_listen_task.cc',
85 'notifier/listener/push_notifications_listen_task.h', 86 'notifier/listener/push_notifications_listen_task.h',
86 'notifier/listener/push_notifications_send_update_task.cc', 87 'notifier/listener/push_notifications_send_update_task.cc',
87 'notifier/listener/push_notifications_send_update_task.h', 88 'notifier/listener/push_notifications_send_update_task.h',
88 'notifier/listener/push_notifications_subscribe_task.cc', 89 'notifier/listener/push_notifications_subscribe_task.cc',
89 'notifier/listener/push_notifications_subscribe_task.h', 90 'notifier/listener/push_notifications_subscribe_task.h',
90 'notifier/listener/talk_mediator.h', 91 'notifier/listener/talk_mediator.h',
91 'notifier/listener/talk_mediator_impl.cc', 92 'notifier/listener/talk_mediator_impl.cc',
92 'notifier/listener/talk_mediator_impl.h', 93 'notifier/listener/talk_mediator_impl.h',
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 'glue/stream_socket_adapter_unittest.cc', 152 'glue/stream_socket_adapter_unittest.cc',
152 'glue/thread_wrapper_unittest.cc', 153 'glue/thread_wrapper_unittest.cc',
153 'notifier/base/chrome_async_socket_unittest.cc', 154 'notifier/base/chrome_async_socket_unittest.cc',
154 'notifier/base/fake_ssl_client_socket_unittest.cc', 155 'notifier/base/fake_ssl_client_socket_unittest.cc',
155 'notifier/base/proxy_resolving_client_socket_unittest.cc', 156 'notifier/base/proxy_resolving_client_socket_unittest.cc',
156 'notifier/base/xmpp_connection_unittest.cc', 157 'notifier/base/xmpp_connection_unittest.cc',
157 'notifier/base/weak_xmpp_client_unittest.cc', 158 'notifier/base/weak_xmpp_client_unittest.cc',
158 'notifier/communicator/xmpp_connection_generator_unittest.cc', 159 'notifier/communicator/xmpp_connection_generator_unittest.cc',
159 'notifier/listener/mediator_thread_mock.cc', 160 'notifier/listener/mediator_thread_mock.cc',
160 'notifier/listener/mediator_thread_mock.h', 161 'notifier/listener/mediator_thread_mock.h',
162 'notifier/listener/mediator_thread_unittest.cc',
161 'notifier/listener/push_notifications_send_update_task_unittest.cc', 163 'notifier/listener/push_notifications_send_update_task_unittest.cc',
162 'notifier/listener/push_notifications_subscribe_task_unittest.cc', 164 'notifier/listener/push_notifications_subscribe_task_unittest.cc',
163 'notifier/listener/talk_mediator_unittest.cc', 165 'notifier/listener/talk_mediator_unittest.cc',
164 'notifier/listener/xml_element_util_unittest.cc', 166 'notifier/listener/xml_element_util_unittest.cc',
165 'run_all_unittests.cc', 167 'run_all_unittests.cc',
166 ], 168 ],
167 'include_dirs': [ 169 'include_dirs': [
168 '..', 170 '..',
169 ], 171 ],
170 'dependencies': [ 172 'dependencies': [
(...skipping 11 matching lines...) Expand all
182 ], 184 ],
183 }, 185 },
184 ], 186 ],
185 } 187 }
186 188
187 # Local Variables: 189 # Local Variables:
188 # tab-width:2 190 # tab-width:2
189 # indent-tabs-mode:nil 191 # indent-tabs-mode:nil
190 # End: 192 # End:
191 # vim: set expandtab tabstop=2 shiftwidth=2: 193 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « chrome/browser/sync/notifier/p2p_notifier.cc ('k') | jingle/notifier/base/proxy_resolving_client_socket_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698