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

Side by Side Diff: jingle/jingle.gyp

Issue 11232048: Adding XMPP ping functionality to CLoudPrint. XMPP ping and timeout is controlled thorugh Service S… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nits Created 8 years, 1 month 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) 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 }, # variables 8 }, # variables
9 'conditions': [ 9 'conditions': [
10 ['OS != "ios"', { 10 ['OS != "ios"', {
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 'notifier/listener/notification_constants.cc', 84 'notifier/listener/notification_constants.cc',
85 'notifier/listener/notification_constants.h', 85 'notifier/listener/notification_constants.h',
86 'notifier/listener/notification_defines.cc', 86 'notifier/listener/notification_defines.cc',
87 'notifier/listener/notification_defines.h', 87 'notifier/listener/notification_defines.h',
88 'notifier/listener/push_client_observer.cc', 88 'notifier/listener/push_client_observer.cc',
89 'notifier/listener/push_client_observer.h', 89 'notifier/listener/push_client_observer.h',
90 'notifier/listener/push_client.cc', 90 'notifier/listener/push_client.cc',
91 'notifier/listener/push_client.h', 91 'notifier/listener/push_client.h',
92 'notifier/listener/push_notifications_listen_task.cc', 92 'notifier/listener/push_notifications_listen_task.cc',
93 'notifier/listener/push_notifications_listen_task.h', 93 'notifier/listener/push_notifications_listen_task.h',
94 'notifier/listener/push_notifications_send_ping_task.cc',
95 'notifier/listener/push_notifications_send_ping_task.h',
akalin 2012/10/24 20:13:49 i don't see these files in this CL? Also, since s
94 'notifier/listener/push_notifications_send_update_task.cc', 96 'notifier/listener/push_notifications_send_update_task.cc',
95 'notifier/listener/push_notifications_send_update_task.h', 97 'notifier/listener/push_notifications_send_update_task.h',
96 'notifier/listener/push_notifications_subscribe_task.cc', 98 'notifier/listener/push_notifications_subscribe_task.cc',
97 'notifier/listener/push_notifications_subscribe_task.h', 99 'notifier/listener/push_notifications_subscribe_task.h',
98 'notifier/listener/xml_element_util.cc', 100 'notifier/listener/xml_element_util.cc',
99 'notifier/listener/xml_element_util.h', 101 'notifier/listener/xml_element_util.h',
100 'notifier/listener/xmpp_push_client.cc', 102 'notifier/listener/xmpp_push_client.cc',
101 'notifier/listener/xmpp_push_client.h', 103 'notifier/listener/xmpp_push_client.h',
102 ], 104 ],
103 'defines' : [ 105 'defines' : [
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 'glue/task_pump_unittest.cc', 172 'glue/task_pump_unittest.cc',
171 'glue/thread_wrapper_unittest.cc', 173 'glue/thread_wrapper_unittest.cc',
172 'notifier/base/weak_xmpp_client_unittest.cc', 174 'notifier/base/weak_xmpp_client_unittest.cc',
173 'notifier/base/xmpp_connection_unittest.cc', 175 'notifier/base/xmpp_connection_unittest.cc',
174 'notifier/communicator/connection_settings_unittest.cc', 176 'notifier/communicator/connection_settings_unittest.cc',
175 'notifier/communicator/login_settings_unittest.cc', 177 'notifier/communicator/login_settings_unittest.cc',
176 'notifier/communicator/single_login_attempt_unittest.cc', 178 'notifier/communicator/single_login_attempt_unittest.cc',
177 'notifier/listener/non_blocking_push_client_unittest.cc', 179 'notifier/listener/non_blocking_push_client_unittest.cc',
178 'notifier/listener/notification_defines_unittest.cc', 180 'notifier/listener/notification_defines_unittest.cc',
179 'notifier/listener/push_client_unittest.cc', 181 'notifier/listener/push_client_unittest.cc',
182 'notifier/listener/push_notifications_send_ping_task_unittest.cc',
180 'notifier/listener/push_notifications_send_update_task_unittest.cc', 183 'notifier/listener/push_notifications_send_update_task_unittest.cc',
181 'notifier/listener/push_notifications_subscribe_task_unittest.cc', 184 'notifier/listener/push_notifications_subscribe_task_unittest.cc',
182 'notifier/listener/xml_element_util_unittest.cc', 185 'notifier/listener/xml_element_util_unittest.cc',
183 'notifier/listener/xmpp_push_client_unittest.cc', 186 'notifier/listener/xmpp_push_client_unittest.cc',
184 'run_all_unittests.cc', 187 'run_all_unittests.cc',
185 ], 188 ],
186 'conditions': [ 189 'conditions': [
187 ['OS=="android"', { 190 ['OS=="android"', {
188 'sources!': [ 191 'sources!': [
189 # TODO(jrg): 192 # TODO(jrg):
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 ], 238 ],
236 }, 239 },
237 { 240 {
238 'target_name': 'notifier_test_util', 241 'target_name': 'notifier_test_util',
239 'type': 'none', 242 'type': 'none',
240 }, 243 },
241 ], 244 ],
242 }], 245 }],
243 ], 246 ],
244 } 247 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698