| OLD | NEW |
| (Empty) | |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'targets': [ |
| 7 { |
| 8 'target_name': 'remoting_client_plugin', |
| 9 'type': 'static_library', |
| 10 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 11 'defines': [ |
| 12 'HAVE_STDINT_H', # Required by on2_integer.h |
| 13 ], |
| 14 'dependencies': [ |
| 15 '../net/net.gyp:net', |
| 16 '../ppapi/ppapi.gyp:ppapi_cpp_objects', |
| 17 '../third_party/webrtc/modules/modules.gyp:desktop_capture', |
| 18 '../ui/events/events.gyp:dom4_keycode_converter', |
| 19 'remoting_base', |
| 20 'remoting_client', |
| 21 'remoting_protocol', |
| 22 ], |
| 23 'sources': [ |
| 24 'client/plugin/chromoting_instance.cc', |
| 25 'client/plugin/chromoting_instance.h', |
| 26 'client/plugin/delegating_signal_strategy.cc', |
| 27 'client/plugin/delegating_signal_strategy.h', |
| 28 'client/plugin/normalizing_input_filter.cc', |
| 29 'client/plugin/normalizing_input_filter.h', |
| 30 'client/plugin/normalizing_input_filter_cros.cc', |
| 31 'client/plugin/normalizing_input_filter_mac.cc', |
| 32 'client/plugin/pepper_audio_player.cc', |
| 33 'client/plugin/pepper_audio_player.h', |
| 34 'client/plugin/pepper_entrypoints.cc', |
| 35 'client/plugin/pepper_entrypoints.h', |
| 36 'client/plugin/pepper_input_handler.cc', |
| 37 'client/plugin/pepper_input_handler.h', |
| 38 'client/plugin/pepper_network_manager.cc', |
| 39 'client/plugin/pepper_network_manager.h', |
| 40 'client/plugin/pepper_packet_socket_factory.cc', |
| 41 'client/plugin/pepper_packet_socket_factory.h', |
| 42 'client/plugin/pepper_plugin_thread_delegate.cc', |
| 43 'client/plugin/pepper_plugin_thread_delegate.h', |
| 44 'client/plugin/pepper_port_allocator.cc', |
| 45 'client/plugin/pepper_port_allocator.h', |
| 46 'client/plugin/pepper_token_fetcher.cc', |
| 47 'client/plugin/pepper_token_fetcher.h', |
| 48 'client/plugin/pepper_util.cc', |
| 49 'client/plugin/pepper_util.h', |
| 50 'client/plugin/pepper_view.cc', |
| 51 'client/plugin/pepper_view.h', |
| 52 ], |
| 53 'conditions' : [ |
| 54 [ 'chromeos==0', { |
| 55 'sources!': [ |
| 56 'client/plugin/normalizing_input_filter_cros.cc', |
| 57 ], |
| 58 }], |
| 59 ], |
| 60 }, # end of target 'remoting_client_plugin' |
| 61 |
| 62 { |
| 63 'target_name': 'remoting_client', |
| 64 'type': 'static_library', |
| 65 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 66 'dependencies': [ |
| 67 'remoting_base', |
| 68 'remoting_protocol', |
| 69 '../third_party/libyuv/libyuv.gyp:libyuv', |
| 70 '../third_party/webrtc/modules/modules.gyp:desktop_capture', |
| 71 ], |
| 72 'sources': [ |
| 73 'client/audio_decode_scheduler.cc', |
| 74 'client/audio_decode_scheduler.h', |
| 75 'client/audio_player.cc', |
| 76 'client/audio_player.h', |
| 77 'client/chromoting_client.cc', |
| 78 'client/chromoting_client.h', |
| 79 'client/chromoting_stats.cc', |
| 80 'client/chromoting_stats.h', |
| 81 'client/client_config.cc', |
| 82 'client/client_config.h', |
| 83 'client/client_context.cc', |
| 84 'client/client_context.h', |
| 85 'client/client_user_interface.h', |
| 86 'client/frame_consumer.h', |
| 87 'client/frame_consumer_proxy.cc', |
| 88 'client/frame_consumer_proxy.h', |
| 89 'client/frame_producer.h', |
| 90 'client/key_event_mapper.cc', |
| 91 'client/key_event_mapper.h', |
| 92 'client/software_video_renderer.cc', |
| 93 'client/software_video_renderer.h', |
| 94 'client/video_renderer.h', |
| 95 ], |
| 96 }, # end of target 'remoting_client' |
| 97 |
| 98 ], # end of targets |
| 99 } |
| OLD | NEW |