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

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: added missing files Created 8 years, 2 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) 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_update_task.cc', 94 'notifier/listener/push_notifications_send_update_task.cc',
95 'notifier/listener/push_notifications_send_update_task.h', 95 'notifier/listener/push_notifications_send_update_task.h',
96 'notifier/listener/push_notifications_subscribe_task.cc', 96 'notifier/listener/push_notifications_subscribe_task.cc',
97 'notifier/listener/push_notifications_subscribe_task.h', 97 'notifier/listener/push_notifications_subscribe_task.h',
98 'notifier/listener/send_ping_task.cc',
99 'notifier/listener/send_ping_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' : [
104 '_CRT_SECURE_NO_WARNINGS', 106 '_CRT_SECURE_NO_WARNINGS',
105 '_USE_32BIT_TIME_T', 107 '_USE_32BIT_TIME_T',
106 ], 108 ],
107 'dependencies': [ 109 'dependencies': [
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
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',
180 'notifier/listener/push_notifications_send_update_task_unittest.cc', 182 'notifier/listener/push_notifications_send_update_task_unittest.cc',
181 'notifier/listener/push_notifications_subscribe_task_unittest.cc', 183 'notifier/listener/push_notifications_subscribe_task_unittest.cc',
184 'notifier/listener/send_ping_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):
190 # EXPECT_DEBUG_DEATH() uses features not enabled. 193 # EXPECT_DEBUG_DEATH() uses features not enabled.
191 # Should we -std=c++0x or -std=gnu++0x? 194 # Should we -std=c++0x or -std=gnu++0x?
(...skipping 43 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