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 'conditions': [ | 9 'conditions': [ |
10 ['OS != "ios"', { | 10 ['OS != "ios" and OS != "android"', { |
11 'targets': [ | 11 'targets': [ |
12 # A library of various utils for integration with libjingle. | 12 # A library of various utils for integration with libjingle. |
13 { | 13 { |
14 'target_name': 'jingle_glue', | 14 'target_name': 'jingle_glue', |
15 'type': 'static_library', | 15 'type': 'static_library', |
16 'sources': [ | 16 'sources': [ |
17 'glue/channel_socket_adapter.cc', | 17 'glue/channel_socket_adapter.cc', |
18 'glue/channel_socket_adapter.h', | 18 'glue/channel_socket_adapter.h', |
19 'glue/chrome_async_socket.cc', | 19 'glue/chrome_async_socket.cc', |
20 'glue/chrome_async_socket.h', | 20 'glue/chrome_async_socket.h', |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 '../base/base.gyp:base', | 204 '../base/base.gyp:base', |
205 '../base/base.gyp:test_support_base', | 205 '../base/base.gyp:test_support_base', |
206 '../net/net.gyp:net', | 206 '../net/net.gyp:net', |
207 '../net/net.gyp:net_test_support', | 207 '../net/net.gyp:net_test_support', |
208 '../testing/gmock.gyp:gmock', | 208 '../testing/gmock.gyp:gmock', |
209 '../testing/gtest.gyp:gtest', | 209 '../testing/gtest.gyp:gtest', |
210 '../third_party/libjingle/libjingle.gyp:libjingle', | 210 '../third_party/libjingle/libjingle.gyp:libjingle', |
211 ], | 211 ], |
212 }, | 212 }, |
213 ], | 213 ], |
214 }, { # OS == "ios" | 214 }, { # OS == "ios" or OS == "android" |
215 'targets': [ | 215 'targets': [ |
216 # Stub targets as iOS doesn't use libjingle. | 216 # Stub targets as iOS/Android don't use libjingle. |
217 { | 217 { |
218 'target_name': 'jingle_glue', | 218 'target_name': 'jingle_glue', |
219 'type': 'none', | 219 'type': 'none', |
220 }, | 220 }, |
221 { | 221 { |
| 222 'target_name': 'jingle_glue_test_util', |
| 223 'type': 'none', |
| 224 }, |
| 225 { |
222 'target_name': 'notifier', | 226 'target_name': 'notifier', |
223 'type': 'static_library', | 227 'type': 'static_library', |
224 'sources': [ | 228 'sources': [ |
225 'notifier/base/gaia_constants.cc', | 229 'notifier/base/gaia_constants.cc', |
226 'notifier/base/gaia_constants.h', | 230 'notifier/base/gaia_constants.h', |
227 'notifier/base/notification_method.h', | 231 'notifier/base/notification_method.h', |
228 'notifier/base/notification_method.cc', | 232 'notifier/base/notification_method.cc', |
229 'notifier/base/notifier_options.cc', | 233 'notifier/base/notifier_options.cc', |
230 'notifier/base/notifier_options.h', | 234 'notifier/base/notifier_options.h', |
231 ], | 235 ], |
232 'dependencies': [ | 236 'dependencies': [ |
233 '../base/base.gyp:base', | 237 '../base/base.gyp:base', |
234 '../net/net.gyp:net', | 238 '../net/net.gyp:net', |
235 ], | 239 ], |
236 }, | 240 }, |
237 { | 241 { |
238 'target_name': 'notifier_test_util', | 242 'target_name': 'notifier_test_util', |
239 'type': 'none', | 243 'type': 'none', |
240 }, | 244 }, |
241 ], | 245 ], |
242 }], | 246 }], |
243 ], | 247 ], |
244 } | 248 } |
OLD | NEW |