OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'target_defaults': { | 6 'target_defaults': { |
7 'defines': [ | 7 'defines': [ |
8 ], | 8 ], |
9 'include_dirs': [ | 9 'include_dirs': [ |
10 '..', # Root of Chrome checkout | 10 '..', # Root of Chrome checkout |
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 'client/host_connection.cc', | 231 'client/host_connection.cc', |
232 'client/host_connection.h', | 232 'client/host_connection.h', |
233 'client/simple_client.cc', | 233 'client/simple_client.cc', |
234 ], | 234 ], |
235 }, # end of target 'chromoting_simple_client' | 235 }, # end of target 'chromoting_simple_client' |
236 | 236 |
237 { | 237 { |
238 'target_name': 'chromoting_jingle_glue', | 238 'target_name': 'chromoting_jingle_glue', |
239 'type': '<(library)', | 239 'type': '<(library)', |
240 'dependencies': [ | 240 'dependencies': [ |
| 241 # TODO(sergeyu): move all code that is shared between notifier and |
| 242 # jingle_glue to a separate library and use it here. |
241 '../chrome/chrome.gyp:notifier', | 243 '../chrome/chrome.gyp:notifier', |
242 '../third_party/libjingle/libjingle.gyp:libjingle', | 244 '../third_party/libjingle/libjingle.gyp:libjingle', |
243 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', | 245 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', |
244 ], | 246 ], |
245 'export_dependent_settings': [ | 247 'export_dependent_settings': [ |
246 '../third_party/libjingle/libjingle.gyp:libjingle', | 248 '../third_party/libjingle/libjingle.gyp:libjingle', |
247 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', | 249 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', |
248 ], | 250 ], |
249 'sources': [ | 251 'sources': [ |
250 'jingle_glue/iq_request.h', | 252 'jingle_glue/iq_request.h', |
251 'jingle_glue/iq_request.cc', | 253 'jingle_glue/iq_request.cc', |
252 'jingle_glue/jingle_channel.h', | 254 'jingle_glue/jingle_channel.h', |
253 'jingle_glue/jingle_channel.cc', | 255 'jingle_glue/jingle_channel.cc', |
254 'jingle_glue/jingle_client.h', | 256 'jingle_glue/jingle_client.h', |
255 'jingle_glue/jingle_client.cc', | 257 'jingle_glue/jingle_client.cc', |
256 'jingle_glue/jingle_info_task.h', | 258 'jingle_glue/jingle_info_task.h', |
257 'jingle_glue/jingle_info_task.cc', | 259 'jingle_glue/jingle_info_task.cc', |
258 'jingle_glue/jingle_thread.h', | 260 'jingle_glue/jingle_thread.h', |
259 'jingle_glue/jingle_thread.cc', | 261 'jingle_glue/jingle_thread.cc', |
260 'jingle_glue/relay_port_allocator.h', | 262 'jingle_glue/relay_port_allocator.h', |
261 'jingle_glue/relay_port_allocator.cc', | 263 'jingle_glue/relay_port_allocator.cc', |
262 ], | 264 ], |
263 }, # end of target 'chromoting_jingle_glue' | 265 }, # end of target 'chromoting_jingle_glue' |
264 | 266 |
265 { | 267 { |
266 'target_name': 'chromoting_jingle_test_client', | 268 'target_name': 'chromoting_jingle_test_client', |
267 'type': 'executable', | 269 'type': 'executable', |
268 'dependencies': [ | 270 'dependencies': [ |
| 271 'chromoting_base', |
269 'chromoting_jingle_glue', | 272 'chromoting_jingle_glue', |
270 '../media/media.gyp:media', | 273 '../media/media.gyp:media', |
271 ], | 274 ], |
272 'sources': [ | 275 'sources': [ |
273 'jingle_glue/jingle_test_client.cc', | 276 'jingle_glue/jingle_test_client.cc', |
274 ], | 277 ], |
275 }, # end of target 'chromoting_jingle_test_client' | 278 }, # end of target 'chromoting_jingle_test_client' |
276 | 279 |
277 # Chromoting unit tests | 280 # Chromoting unit tests |
278 { | 281 { |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 }, # end of target 'chromoting_unittests' | 351 }, # end of target 'chromoting_unittests' |
349 | 352 |
350 ], # end of targets | 353 ], # end of targets |
351 } | 354 } |
352 | 355 |
353 # Local Variables: | 356 # Local Variables: |
354 # tab-width:2 | 357 # tab-width:2 |
355 # indent-tabs-mode:nil | 358 # indent-tabs-mode:nil |
356 # End: | 359 # End: |
357 # vim: set expandtab tabstop=2 shiftwidth=2: | 360 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |