Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / remoting / remoting_client.gypi
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/media_source_video_renderer.cc',
29         'client/plugin/media_source_video_renderer.h',
30         'client/plugin/normalizing_input_filter.cc',
31         'client/plugin/normalizing_input_filter.h',
32         'client/plugin/normalizing_input_filter_cros.cc',
33         'client/plugin/normalizing_input_filter_mac.cc',
34         'client/plugin/pepper_audio_player.cc',
35         'client/plugin/pepper_audio_player.h',
36         'client/plugin/pepper_entrypoints.cc',
37         'client/plugin/pepper_entrypoints.h',
38         'client/plugin/pepper_input_handler.cc',
39         'client/plugin/pepper_input_handler.h',
40         'client/plugin/pepper_network_manager.cc',
41         'client/plugin/pepper_network_manager.h',
42         'client/plugin/pepper_packet_socket_factory.cc',
43         'client/plugin/pepper_packet_socket_factory.h',
44         'client/plugin/pepper_plugin_thread_delegate.cc',
45         'client/plugin/pepper_plugin_thread_delegate.h',
46         'client/plugin/pepper_port_allocator.cc',
47         'client/plugin/pepper_port_allocator.h',
48         'client/plugin/pepper_token_fetcher.cc',
49         'client/plugin/pepper_token_fetcher.h',
50         'client/plugin/pepper_util.cc',
51         'client/plugin/pepper_util.h',
52         'client/plugin/pepper_view.cc',
53         'client/plugin/pepper_view.h',
54       ],
55       'conditions' : [
56         [ 'chromeos==0', {
57           'sources!': [
58             'client/plugin/normalizing_input_filter_cros.cc',
59           ],
60         }],
61       ],
62     },  # end of target 'remoting_client_plugin'
63
64     {
65       'target_name': 'remoting_client',
66       'type': 'static_library',
67       'variables': { 'enable_wexit_time_destructors': 1, },
68       'dependencies': [
69         'remoting_base',
70         'remoting_protocol',
71         '../third_party/libyuv/libyuv.gyp:libyuv',
72         '../third_party/webrtc/modules/modules.gyp:desktop_capture',
73         '../third_party/libwebm/libwebm.gyp:libwebm',
74       ],
75       'sources': [
76         'client/audio_decode_scheduler.cc',
77         'client/audio_decode_scheduler.h',
78         'client/audio_player.cc',
79         'client/audio_player.h',
80         'client/chromoting_client.cc',
81         'client/chromoting_client.h',
82         'client/chromoting_stats.cc',
83         'client/chromoting_stats.h',
84         'client/client_config.cc',
85         'client/client_config.h',
86         'client/client_context.cc',
87         'client/client_context.h',
88         'client/client_user_interface.h',
89         'client/frame_consumer.h',
90         'client/frame_consumer_proxy.cc',
91         'client/frame_consumer_proxy.h',
92         'client/frame_producer.h',
93         'client/key_event_mapper.cc',
94         'client/key_event_mapper.h',
95         'client/software_video_renderer.cc',
96         'client/software_video_renderer.h',
97         'client/video_renderer.h',
98       ],
99     },  # end of target 'remoting_client'
100
101   ],  # end of targets
102 }