OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 # TODO(dmaclach): can we pick this up some other way? Right now it's | 7 # TODO(dmaclach): can we pick this up some other way? Right now it's |
8 # duplicated from chrome.gyp | 8 # duplicated from chrome.gyp |
9 'chromium_code': 1, | 9 'chromium_code': 1, |
10 # Use a consistent MIME-type independent of branding. | 10 # Use a consistent MIME-type independent of branding. |
(...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
489 'client/chromoting_stats.h', | 489 'client/chromoting_stats.h', |
490 'client/chromoting_view.cc', | 490 'client/chromoting_view.cc', |
491 'client/chromoting_view.h', | 491 'client/chromoting_view.h', |
492 'client/client_config.cc', | 492 'client/client_config.cc', |
493 'client/client_config.h', | 493 'client/client_config.h', |
494 'client/client_context.cc', | 494 'client/client_context.cc', |
495 'client/client_context.h', | 495 'client/client_context.h', |
496 'client/frame_consumer.h', | 496 'client/frame_consumer.h', |
497 'client/input_handler.cc', | 497 'client/input_handler.cc', |
498 'client/input_handler.h', | 498 'client/input_handler.h', |
| 499 'client/ipc_host_resolver.cc', |
| 500 'client/ipc_host_resolver.h', |
499 'client/rectangle_update_decoder.cc', | 501 'client/rectangle_update_decoder.cc', |
500 'client/rectangle_update_decoder.h', | 502 'client/rectangle_update_decoder.h', |
501 ], | 503 ], |
502 }, # end of target 'remoting_client' | 504 }, # end of target 'remoting_client' |
503 | 505 |
504 { | 506 { |
505 'target_name': 'remoting_simple_host', | 507 'target_name': 'remoting_simple_host', |
506 'type': 'executable', | 508 'type': 'executable', |
507 'dependencies': [ | 509 'dependencies': [ |
508 'remoting_base', | 510 'remoting_base', |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
552 '../jingle/jingle.gyp:jingle_glue', | 554 '../jingle/jingle.gyp:jingle_glue', |
553 '../jingle/jingle.gyp:notifier', | 555 '../jingle/jingle.gyp:notifier', |
554 '../third_party/libjingle/libjingle.gyp:libjingle', | 556 '../third_party/libjingle/libjingle.gyp:libjingle', |
555 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', | 557 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', |
556 ], | 558 ], |
557 'export_dependent_settings': [ | 559 'export_dependent_settings': [ |
558 '../third_party/libjingle/libjingle.gyp:libjingle', | 560 '../third_party/libjingle/libjingle.gyp:libjingle', |
559 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', | 561 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', |
560 ], | 562 ], |
561 'sources': [ | 563 'sources': [ |
| 564 'jingle_glue/host_resolver.cc', |
| 565 'jingle_glue/host_resolver.h', |
562 'jingle_glue/http_port_allocator.cc', | 566 'jingle_glue/http_port_allocator.cc', |
563 'jingle_glue/http_port_allocator.h', | 567 'jingle_glue/http_port_allocator.h', |
564 'jingle_glue/iq_request.cc', | 568 'jingle_glue/iq_request.cc', |
565 'jingle_glue/iq_request.h', | 569 'jingle_glue/iq_request.h', |
566 'jingle_glue/javascript_iq_request.cc', | 570 'jingle_glue/javascript_iq_request.cc', |
567 'jingle_glue/javascript_iq_request.h', | 571 'jingle_glue/javascript_iq_request.h', |
568 'jingle_glue/javascript_signal_strategy.cc', | 572 'jingle_glue/javascript_signal_strategy.cc', |
569 'jingle_glue/javascript_signal_strategy.h', | 573 'jingle_glue/javascript_signal_strategy.h', |
570 'jingle_glue/jingle_info_request.cc', | 574 'jingle_glue/jingle_info_request.cc', |
571 'jingle_glue/jingle_info_request.h', | 575 'jingle_glue/jingle_info_request.h', |
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
823 ['target_arch=="arm"', { | 827 ['target_arch=="arm"', { |
824 'sources!': [ | 828 'sources!': [ |
825 'base/decoder_vp8_unittest.cc', | 829 'base/decoder_vp8_unittest.cc', |
826 'base/encoder_vp8_unittest.cc', | 830 'base/encoder_vp8_unittest.cc', |
827 ], | 831 ], |
828 }], | 832 }], |
829 ], # end of 'conditions' | 833 ], # end of 'conditions' |
830 }, # end of target 'remoting_unittests' | 834 }, # end of target 'remoting_unittests' |
831 ], # end of targets | 835 ], # end of targets |
832 } | 836 } |
OLD | NEW |