| 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 | 9 |
| 10 'target_defaults': { | 10 'target_defaults': { |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 ], | 279 ], |
| 280 'sources': [ | 280 'sources': [ |
| 281 'host/keygen_main.cc', | 281 'host/keygen_main.cc', |
| 282 ], | 282 ], |
| 283 }, # end of target 'chromoting_host_keygen' | 283 }, # end of target 'chromoting_host_keygen' |
| 284 | 284 |
| 285 { | 285 { |
| 286 'target_name': 'chromoting_jingle_glue', | 286 'target_name': 'chromoting_jingle_glue', |
| 287 'type': '<(library)', | 287 'type': '<(library)', |
| 288 'dependencies': [ | 288 'dependencies': [ |
| 289 '../net/net.gyp:net', | 289 '../jingle/jingle.gyp:notifier', |
| 290 '../third_party/libjingle/libjingle.gyp:libjingle', | 290 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 291 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', | 291 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', |
| 292 ], | 292 ], |
| 293 'export_dependent_settings': [ | 293 'export_dependent_settings': [ |
| 294 '../third_party/libjingle/libjingle.gyp:libjingle', | 294 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 295 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', | 295 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', |
| 296 ], | 296 ], |
| 297 'sources': [ | 297 'sources': [ |
| 298 'jingle_glue/gaia_token_pre_xmpp_auth.cc', | |
| 299 'jingle_glue/gaia_token_pre_xmpp_auth.h', | |
| 300 'jingle_glue/iq_request.cc', | 298 'jingle_glue/iq_request.cc', |
| 301 'jingle_glue/iq_request.h', | 299 'jingle_glue/iq_request.h', |
| 302 'jingle_glue/jingle_channel.cc', | 300 'jingle_glue/jingle_channel.cc', |
| 303 'jingle_glue/jingle_channel.h', | 301 'jingle_glue/jingle_channel.h', |
| 304 'jingle_glue/jingle_client.cc', | 302 'jingle_glue/jingle_client.cc', |
| 305 'jingle_glue/jingle_client.h', | 303 'jingle_glue/jingle_client.h', |
| 306 'jingle_glue/jingle_info_task.cc', | 304 'jingle_glue/jingle_info_task.cc', |
| 307 'jingle_glue/jingle_info_task.h', | 305 'jingle_glue/jingle_info_task.h', |
| 308 'jingle_glue/jingle_thread.cc', | 306 'jingle_glue/jingle_thread.cc', |
| 309 'jingle_glue/jingle_thread.h', | 307 'jingle_glue/jingle_thread.h', |
| 310 'jingle_glue/relay_port_allocator.cc', | 308 'jingle_glue/relay_port_allocator.cc', |
| 311 'jingle_glue/relay_port_allocator.h', | 309 'jingle_glue/relay_port_allocator.h', |
| 312 'jingle_glue/ssl_adapter.cc', | |
| 313 'jingle_glue/ssl_adapter.h', | |
| 314 'jingle_glue/ssl_socket_adapter.cc', | |
| 315 'jingle_glue/ssl_socket_adapter.h', | |
| 316 'jingle_glue/xmpp_socket_adapter.cc', | |
| 317 'jingle_glue/xmpp_socket_adapter.h', | |
| 318 ], | 310 ], |
| 319 }, # end of target 'chromoting_jingle_glue' | 311 }, # end of target 'chromoting_jingle_glue' |
| 320 | 312 |
| 321 { | 313 { |
| 322 'target_name': 'chromoting_jingle_test_client', | 314 'target_name': 'chromoting_jingle_test_client', |
| 323 'type': 'executable', | 315 'type': 'executable', |
| 324 'dependencies': [ | 316 'dependencies': [ |
| 325 'chromoting_base', | 317 'chromoting_base', |
| 326 'chromoting_jingle_glue', | 318 'chromoting_jingle_glue', |
| 327 '../media/media.gyp:media', | 319 '../media/media.gyp:media', |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 ], # end of 'conditions' | 399 ], # end of 'conditions' |
| 408 }, # end of target 'chromoting_unittests' | 400 }, # end of target 'chromoting_unittests' |
| 409 ], # end of targets | 401 ], # end of targets |
| 410 } | 402 } |
| 411 | 403 |
| 412 # Local Variables: | 404 # Local Variables: |
| 413 # tab-width:2 | 405 # tab-width:2 |
| 414 # indent-tabs-mode:nil | 406 # indent-tabs-mode:nil |
| 415 # End: | 407 # End: |
| 416 # vim: set expandtab tabstop=2 shiftwidth=2: | 408 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |