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

Side by Side Diff: jingle/jingle.gyp

Issue 10413014: [Sync] Turn notifier::PushClient into an interface (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync to head Created 8 years, 7 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 'targets': [ 9 'targets': [
10 # A library of various utils for integration with libjingle. 10 # A library of various utils for integration with libjingle.
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 'notifier/base/xmpp_connection.cc', 68 'notifier/base/xmpp_connection.cc',
69 'notifier/base/xmpp_connection.h', 69 'notifier/base/xmpp_connection.h',
70 'notifier/communicator/connection_settings.cc', 70 'notifier/communicator/connection_settings.cc',
71 'notifier/communicator/connection_settings.h', 71 'notifier/communicator/connection_settings.h',
72 'notifier/communicator/login.cc', 72 'notifier/communicator/login.cc',
73 'notifier/communicator/login.h', 73 'notifier/communicator/login.h',
74 'notifier/communicator/login_settings.cc', 74 'notifier/communicator/login_settings.cc',
75 'notifier/communicator/login_settings.h', 75 'notifier/communicator/login_settings.h',
76 'notifier/communicator/single_login_attempt.cc', 76 'notifier/communicator/single_login_attempt.cc',
77 'notifier/communicator/single_login_attempt.h', 77 'notifier/communicator/single_login_attempt.h',
78 'notifier/listener/push_client.cc', 78 'notifier/listener/non_blocking_push_client.cc',
79 'notifier/listener/push_client.h', 79 'notifier/listener/non_blocking_push_client.h',
80 'notifier/listener/notification_constants.cc', 80 'notifier/listener/notification_constants.cc',
81 'notifier/listener/notification_constants.h', 81 'notifier/listener/notification_constants.h',
82 'notifier/listener/notification_defines.cc', 82 'notifier/listener/notification_defines.cc',
83 'notifier/listener/notification_defines.h', 83 'notifier/listener/notification_defines.h',
84 'notifier/listener/push_client_observer.cc',
85 'notifier/listener/push_client_observer.h',
86 'notifier/listener/push_client.cc',
87 'notifier/listener/push_client.h',
84 'notifier/listener/push_notifications_listen_task.cc', 88 'notifier/listener/push_notifications_listen_task.cc',
85 'notifier/listener/push_notifications_listen_task.h', 89 'notifier/listener/push_notifications_listen_task.h',
86 'notifier/listener/push_notifications_send_update_task.cc', 90 'notifier/listener/push_notifications_send_update_task.cc',
87 'notifier/listener/push_notifications_send_update_task.h', 91 'notifier/listener/push_notifications_send_update_task.h',
88 'notifier/listener/push_notifications_subscribe_task.cc', 92 'notifier/listener/push_notifications_subscribe_task.cc',
89 'notifier/listener/push_notifications_subscribe_task.h', 93 'notifier/listener/push_notifications_subscribe_task.h',
90 'notifier/listener/xml_element_util.cc', 94 'notifier/listener/xml_element_util.cc',
91 'notifier/listener/xml_element_util.h', 95 'notifier/listener/xml_element_util.h',
96 'notifier/listener/xmpp_push_client.cc',
97 'notifier/listener/xmpp_push_client.h',
92 ], 98 ],
93 'defines' : [ 99 'defines' : [
94 '_CRT_SECURE_NO_WARNINGS', 100 '_CRT_SECURE_NO_WARNINGS',
95 '_USE_32BIT_TIME_T', 101 '_USE_32BIT_TIME_T',
96 ], 102 ],
97 'dependencies': [ 103 'dependencies': [
98 '../base/base.gyp:base', 104 '../base/base.gyp:base',
99 '../build/temp_gyp/googleurl.gyp:googleurl', 105 '../build/temp_gyp/googleurl.gyp:googleurl',
100 '../net/net.gyp:net', 106 '../net/net.gyp:net',
101 '../third_party/expat/expat.gyp:expat', 107 '../third_party/expat/expat.gyp:expat',
(...skipping 11 matching lines...) Expand all
113 ], 119 ],
114 }, 120 },
115 { 121 {
116 'target_name': 'notifier_test_util', 122 'target_name': 'notifier_test_util',
117 'type': 'static_library', 123 'type': 'static_library',
118 'sources': [ 124 'sources': [
119 'notifier/base/fake_base_task.cc', 125 'notifier/base/fake_base_task.cc',
120 'notifier/base/fake_base_task.h', 126 'notifier/base/fake_base_task.h',
121 'notifier/base/mock_task.cc', 127 'notifier/base/mock_task.cc',
122 'notifier/base/mock_task.h', 128 'notifier/base/mock_task.h',
129 'notifier/listener/fake_push_client.cc',
130 'notifier/listener/fake_push_client.h',
131 'notifier/listener/fake_push_client_observer.cc',
132 'notifier/listener/fake_push_client_observer.h',
123 ], 133 ],
124 'dependencies': [ 134 'dependencies': [
125 'notifier', 135 'notifier',
126 '../base/base.gyp:base', 136 '../base/base.gyp:base',
127 '../testing/gmock.gyp:gmock', 137 '../testing/gmock.gyp:gmock',
128 ], 138 ],
129 }, 139 },
130 { 140 {
131 'target_name': 'jingle_glue_test_util', 141 'target_name': 'jingle_glue_test_util',
132 'type': 'static_library', 142 'type': 'static_library',
(...skipping 20 matching lines...) Expand all
153 'glue/thread_wrapper_unittest.cc', 163 'glue/thread_wrapper_unittest.cc',
154 'notifier/base/chrome_async_socket_unittest.cc', 164 'notifier/base/chrome_async_socket_unittest.cc',
155 'notifier/base/fake_ssl_client_socket_unittest.cc', 165 'notifier/base/fake_ssl_client_socket_unittest.cc',
156 'notifier/base/proxy_resolving_client_socket_unittest.cc', 166 'notifier/base/proxy_resolving_client_socket_unittest.cc',
157 'notifier/base/task_pump_unittest.cc', 167 'notifier/base/task_pump_unittest.cc',
158 'notifier/base/xmpp_connection_unittest.cc', 168 'notifier/base/xmpp_connection_unittest.cc',
159 'notifier/base/weak_xmpp_client_unittest.cc', 169 'notifier/base/weak_xmpp_client_unittest.cc',
160 'notifier/communicator/connection_settings_unittest.cc', 170 'notifier/communicator/connection_settings_unittest.cc',
161 'notifier/communicator/login_settings_unittest.cc', 171 'notifier/communicator/login_settings_unittest.cc',
162 'notifier/communicator/single_login_attempt_unittest.cc', 172 'notifier/communicator/single_login_attempt_unittest.cc',
173 'notifier/listener/non_blocking_push_client_unittest.cc',
163 'notifier/listener/push_client_unittest.cc', 174 'notifier/listener/push_client_unittest.cc',
164 'notifier/listener/push_notifications_send_update_task_unittest.cc', 175 'notifier/listener/push_notifications_send_update_task_unittest.cc',
165 'notifier/listener/push_notifications_subscribe_task_unittest.cc', 176 'notifier/listener/push_notifications_subscribe_task_unittest.cc',
166 'notifier/listener/xml_element_util_unittest.cc', 177 'notifier/listener/xml_element_util_unittest.cc',
178 'notifier/listener/xmpp_push_client_unittest.cc',
167 'run_all_unittests.cc', 179 'run_all_unittests.cc',
168 ], 180 ],
169 'conditions': [ 181 'conditions': [
170 ['OS=="android"', { 182 ['OS=="android"', {
171 'sources!': [ 183 'sources!': [
172 # TODO(jrg): 184 # TODO(jrg):
173 # EXPECT_DEBUG_DEATH() uses features not enabled. 185 # EXPECT_DEBUG_DEATH() uses features not enabled.
174 # Should we -std=c++0x or -std=gnu++0x? 186 # Should we -std=c++0x or -std=gnu++0x?
175 'notifier/base/chrome_async_socket_unittest.cc', 187 'notifier/base/chrome_async_socket_unittest.cc',
176 'notifier/base/xmpp_connection_unittest.cc', 188 'notifier/base/xmpp_connection_unittest.cc',
(...skipping 11 matching lines...) Expand all
188 '../base/base.gyp:test_support_base', 200 '../base/base.gyp:test_support_base',
189 '../net/net.gyp:net', 201 '../net/net.gyp:net',
190 '../net/net.gyp:net_test_support', 202 '../net/net.gyp:net_test_support',
191 '../testing/gmock.gyp:gmock', 203 '../testing/gmock.gyp:gmock',
192 '../testing/gtest.gyp:gtest', 204 '../testing/gtest.gyp:gtest',
193 '../third_party/libjingle/libjingle.gyp:libjingle', 205 '../third_party/libjingle/libjingle.gyp:libjingle',
194 ], 206 ],
195 }, 207 },
196 ], 208 ],
197 } 209 }
OLDNEW
« no previous file with comments | « chrome/service/cloud_print/cloud_print_proxy_backend.cc ('k') | jingle/notifier/listener/fake_push_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698