OLD | NEW |
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 Loading... |
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/non_blocking_push_client.cc', | 78 'notifier/listener/push_client.cc', |
79 'notifier/listener/non_blocking_push_client.h', | 79 'notifier/listener/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', | |
88 'notifier/listener/push_notifications_listen_task.cc', | 84 'notifier/listener/push_notifications_listen_task.cc', |
89 'notifier/listener/push_notifications_listen_task.h', | 85 'notifier/listener/push_notifications_listen_task.h', |
90 'notifier/listener/push_notifications_send_update_task.cc', | 86 'notifier/listener/push_notifications_send_update_task.cc', |
91 'notifier/listener/push_notifications_send_update_task.h', | 87 'notifier/listener/push_notifications_send_update_task.h', |
92 'notifier/listener/push_notifications_subscribe_task.cc', | 88 'notifier/listener/push_notifications_subscribe_task.cc', |
93 'notifier/listener/push_notifications_subscribe_task.h', | 89 'notifier/listener/push_notifications_subscribe_task.h', |
94 'notifier/listener/xml_element_util.cc', | 90 'notifier/listener/xml_element_util.cc', |
95 'notifier/listener/xml_element_util.h', | 91 'notifier/listener/xml_element_util.h', |
96 'notifier/listener/xmpp_push_client.cc', | |
97 'notifier/listener/xmpp_push_client.h', | |
98 ], | 92 ], |
99 'defines' : [ | 93 'defines' : [ |
100 '_CRT_SECURE_NO_WARNINGS', | 94 '_CRT_SECURE_NO_WARNINGS', |
101 '_USE_32BIT_TIME_T', | 95 '_USE_32BIT_TIME_T', |
102 ], | 96 ], |
103 'dependencies': [ | 97 'dependencies': [ |
104 '../base/base.gyp:base', | 98 '../base/base.gyp:base', |
105 '../build/temp_gyp/googleurl.gyp:googleurl', | 99 '../build/temp_gyp/googleurl.gyp:googleurl', |
106 '../net/net.gyp:net', | 100 '../net/net.gyp:net', |
107 '../third_party/expat/expat.gyp:expat', | 101 '../third_party/expat/expat.gyp:expat', |
(...skipping 11 matching lines...) Expand all Loading... |
119 ], | 113 ], |
120 }, | 114 }, |
121 { | 115 { |
122 'target_name': 'notifier_test_util', | 116 'target_name': 'notifier_test_util', |
123 'type': 'static_library', | 117 'type': 'static_library', |
124 'sources': [ | 118 'sources': [ |
125 'notifier/base/fake_base_task.cc', | 119 'notifier/base/fake_base_task.cc', |
126 'notifier/base/fake_base_task.h', | 120 'notifier/base/fake_base_task.h', |
127 'notifier/base/mock_task.cc', | 121 'notifier/base/mock_task.cc', |
128 'notifier/base/mock_task.h', | 122 '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', | |
133 ], | 123 ], |
134 'dependencies': [ | 124 'dependencies': [ |
135 'notifier', | 125 'notifier', |
136 '../base/base.gyp:base', | 126 '../base/base.gyp:base', |
137 '../testing/gmock.gyp:gmock', | 127 '../testing/gmock.gyp:gmock', |
138 ], | 128 ], |
139 }, | 129 }, |
140 { | 130 { |
141 'target_name': 'jingle_glue_test_util', | 131 'target_name': 'jingle_glue_test_util', |
142 'type': 'static_library', | 132 'type': 'static_library', |
(...skipping 20 matching lines...) Expand all Loading... |
163 'glue/thread_wrapper_unittest.cc', | 153 'glue/thread_wrapper_unittest.cc', |
164 'notifier/base/chrome_async_socket_unittest.cc', | 154 'notifier/base/chrome_async_socket_unittest.cc', |
165 'notifier/base/fake_ssl_client_socket_unittest.cc', | 155 'notifier/base/fake_ssl_client_socket_unittest.cc', |
166 'notifier/base/proxy_resolving_client_socket_unittest.cc', | 156 'notifier/base/proxy_resolving_client_socket_unittest.cc', |
167 'notifier/base/task_pump_unittest.cc', | 157 'notifier/base/task_pump_unittest.cc', |
168 'notifier/base/xmpp_connection_unittest.cc', | 158 'notifier/base/xmpp_connection_unittest.cc', |
169 'notifier/base/weak_xmpp_client_unittest.cc', | 159 'notifier/base/weak_xmpp_client_unittest.cc', |
170 'notifier/communicator/connection_settings_unittest.cc', | 160 'notifier/communicator/connection_settings_unittest.cc', |
171 'notifier/communicator/login_settings_unittest.cc', | 161 'notifier/communicator/login_settings_unittest.cc', |
172 'notifier/communicator/single_login_attempt_unittest.cc', | 162 'notifier/communicator/single_login_attempt_unittest.cc', |
173 'notifier/listener/non_blocking_push_client_unittest.cc', | |
174 'notifier/listener/push_client_unittest.cc', | 163 'notifier/listener/push_client_unittest.cc', |
175 'notifier/listener/push_notifications_send_update_task_unittest.cc', | 164 'notifier/listener/push_notifications_send_update_task_unittest.cc', |
176 'notifier/listener/push_notifications_subscribe_task_unittest.cc', | 165 'notifier/listener/push_notifications_subscribe_task_unittest.cc', |
177 'notifier/listener/xml_element_util_unittest.cc', | 166 'notifier/listener/xml_element_util_unittest.cc', |
178 'notifier/listener/xmpp_push_client_unittest.cc', | |
179 'run_all_unittests.cc', | 167 'run_all_unittests.cc', |
180 ], | 168 ], |
181 'conditions': [ | 169 'conditions': [ |
182 ['OS=="android"', { | 170 ['OS=="android"', { |
183 'sources!': [ | 171 'sources!': [ |
184 # TODO(jrg): | 172 # TODO(jrg): |
185 # EXPECT_DEBUG_DEATH() uses features not enabled. | 173 # EXPECT_DEBUG_DEATH() uses features not enabled. |
186 # Should we -std=c++0x or -std=gnu++0x? | 174 # Should we -std=c++0x or -std=gnu++0x? |
187 'notifier/base/chrome_async_socket_unittest.cc', | 175 'notifier/base/chrome_async_socket_unittest.cc', |
188 'notifier/base/xmpp_connection_unittest.cc', | 176 'notifier/base/xmpp_connection_unittest.cc', |
(...skipping 11 matching lines...) Expand all Loading... |
200 '../base/base.gyp:test_support_base', | 188 '../base/base.gyp:test_support_base', |
201 '../net/net.gyp:net', | 189 '../net/net.gyp:net', |
202 '../net/net.gyp:net_test_support', | 190 '../net/net.gyp:net_test_support', |
203 '../testing/gmock.gyp:gmock', | 191 '../testing/gmock.gyp:gmock', |
204 '../testing/gtest.gyp:gtest', | 192 '../testing/gtest.gyp:gtest', |
205 '../third_party/libjingle/libjingle.gyp:libjingle', | 193 '../third_party/libjingle/libjingle.gyp:libjingle', |
206 ], | 194 ], |
207 }, | 195 }, |
208 ], | 196 ], |
209 } | 197 } |
OLD | NEW |