don't pretend to support dbus on windows in dbus_export.h
[chromium-blink-merge.git] / remoting / remoting_client.gypi
blobd7d66f16b0580bff5364c2b09bd9cf79a2f339f4
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.
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         '../ppapi/ppapi.gyp:ppapi_internal_module',
18         '../third_party/webrtc/modules/modules.gyp:desktop_capture',
19         '../ui/events/events.gyp:dom4_keycode_converter',
20         'remoting_base',
21         'remoting_client',
22         'remoting_protocol',
23       ],
24       'sources': [
25         '<@(remoting_client_plugin_sources)',
26         'client/plugin/pepper_entrypoints.cc',
27         'client/plugin/pepper_entrypoints.h',
28       ],
29     },  # end of target 'remoting_client_plugin'
31     {
32       'target_name': 'remoting_client',
33       'type': 'static_library',
34       'variables': { 'enable_wexit_time_destructors': 1, },
35       'defines': [
36         'VERSION=<(version_full)',
37       ],
38       'dependencies': [
39         'remoting_base',
40         'remoting_protocol',
41         '../third_party/libyuv/libyuv.gyp:libyuv',
42         '../third_party/webrtc/modules/modules.gyp:desktop_capture',
43         '../third_party/libwebm/libwebm.gyp:libwebm',
44       ],
45       'sources': [
46         '<@(remoting_client_sources)',
47       ],
48     },  # end of target 'remoting_client'
50     {
51       'target_name': 'remoting_webapp_html',
52       'type': 'none',
53       'actions': [
54         {
55           'action_name': 'Build Remoting Webapp main.html',
56           'inputs': [
57             'webapp/build-html.py',
58             '<(remoting_webapp_template_main)',
59             '<@(remoting_webapp_template_files)',
60           ],
61           'outputs': [
62             '<(SHARED_INTERMEDIATE_DIR)/main.html',
63           ],
64           'action': [
65             'python', 'webapp/build-html.py',
66             '<(SHARED_INTERMEDIATE_DIR)/main.html',
67             '<(remoting_webapp_template_main)',
68             '--template', '<@(remoting_webapp_template_files)',
69             '--js', '<@(remoting_webapp_main_html_js_files)',
70           ],
71         },
72         {
73           'action_name': 'Build Remoting Webapp wcs_sandbox.html',
74           'inputs': [
75             'webapp/build-html.py',
76             '<(remoting_webapp_template_wcs_sandbox)',
77           ],
78           'outputs': [
79             '<(SHARED_INTERMEDIATE_DIR)/wcs_sandbox.html',
80           ],
81           'action': [
82             'python', 'webapp/build-html.py',
83             '<(SHARED_INTERMEDIATE_DIR)/wcs_sandbox.html',
84             '<(remoting_webapp_template_wcs_sandbox)',
85             '--js', '<@(remoting_webapp_wcs_sandbox_html_js_files)',
86           ],
87         },
88       ],
89     },  # end of target 'remoting_webapp_html'
91     {
92       'target_name': 'remoting_webapp',
93       'type': 'none',
94       'dependencies': [
95         'remoting_webapp_v1',
96         'remoting_webapp_v2',
97       ],
98     },  # end of target 'remoting_webapp'
100     {
101       'target_name': 'remoting_webapp_v1',
102       'type': 'none',
103       'variables': {
104         'webapp_type': 'v1',
105         'output_dir': '<(PRODUCT_DIR)/remoting/remoting.webapp',
106         'zip_path': '<(PRODUCT_DIR)/remoting-webapp.zip',
107       },
108       'includes': [ 'remoting_webapp.gypi', ],
109     },  # end of target 'remoting_webapp_v1'
111     {
112       'target_name': 'remoting_webapp_v2',
113       'type': 'none',
114       'variables': {
115         'output_dir': '<(PRODUCT_DIR)/remoting/remoting.webapp.v2',
116         'zip_path': '<(PRODUCT_DIR)/remoting-webapp.v2.zip',
117         'extra_files': [ 'webapp/background.js' ],
118       },
119       'conditions': [
120         ['disable_nacl==0 and disable_nacl_untrusted==0', {
121           'dependencies': [
122             'remoting_nacl.gyp:remoting_client_plugin_nacl',
123           ],
124           'variables': {
125             'webapp_type': 'v2_pnacl',
126             'extra_files': [
127               'webapp/remoting_client_pnacl.nmf',
128               '<(PRODUCT_DIR)/remoting_client_plugin_newlib.pexe',
129             ],
130           },
131         }, {
132           'variables': {
133             'webapp_type': 'v2',
134           },
135         }],
136       ],
137       'includes': [ 'remoting_webapp.gypi', ],
138     },  # end of target 'remoting_webapp_v2'
139   ],  # end of targets