Add iOS bots to 10% CQ experiment
[chromium-blink-merge.git] / remoting / remoting_client.gypi
blobe8f3efb19412ff682ec2071d7c2507310722b4df
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       # GN version: //remoting/client/plugin
9       'target_name': 'remoting_client_plugin',
10       'type': 'static_library',
11       'variables': { 'enable_wexit_time_destructors': 1, },
12       'defines': [
13         'HAVE_STDINT_H',  # Required by on2_integer.h
14       ],
15       'dependencies': [
16         '../net/net.gyp:net',
17         '../ppapi/ppapi.gyp:ppapi_cpp_objects',
18         '../ppapi/ppapi.gyp:ppapi_internal_module',
19         '../third_party/webrtc/modules/modules.gyp:desktop_capture',
20         '../ui/events/events.gyp:dom4_keycode_converter',
21         'remoting_base',
22         'remoting_client',
23         'remoting_protocol',
24       ],
25       'sources': [
26         '<@(remoting_client_plugin_sources)',
27         'client/plugin/pepper_entrypoints.cc',
28         'client/plugin/pepper_entrypoints.h',
29       ],
30     },  # end of target 'remoting_client_plugin'
32     {
33       # GN version: //remoting/client
34       'target_name': 'remoting_client',
35       'type': 'static_library',
36       'variables': { 'enable_wexit_time_destructors': 1, },
37       'defines': [
38         'VERSION=<(version_full)',
39       ],
40       'dependencies': [
41         'remoting_base',
42         'remoting_protocol',
43         '../third_party/libyuv/libyuv.gyp:libyuv',
44         '../third_party/webrtc/modules/modules.gyp:desktop_capture',
45       ],
46       'sources': [
47         '<@(remoting_client_sources)',
48       ],
49     },  # end of target 'remoting_client'
51     {
52       'target_name': 'remoting_webapp_html',
53       'type': 'none',
54       'actions': [
55         {
56           # GN version: //remoting/webapp:html
57           'action_name': 'Build Remoting Webapp main.html',
58           'inputs': [
59             'webapp/build-html.py',
60             '<(remoting_webapp_template_main)',
61             '<@(remoting_webapp_template_files)',
62           ],
63           'outputs': [
64             '<(SHARED_INTERMEDIATE_DIR)/main.html',
65           ],
66           'action': [
67             'python', 'webapp/build-html.py',
68             '<(SHARED_INTERMEDIATE_DIR)/main.html',
69             '<(remoting_webapp_template_main)',
70             '--template-dir', '<(DEPTH)/remoting',
71             '--templates', '<@(remoting_webapp_template_files)',
72             '--js',
73             '<@(remoting_webapp_shared_main_html_js_files)',
74             '<@(remoting_webapp_crd_main_html_js_files)',
75           ],
76         },
77         {
78           'action_name': 'Build Remoting Webapp wcs_sandbox.html',
79           'inputs': [
80             'webapp/build-html.py',
81             '<(remoting_webapp_template_wcs_sandbox)',
82           ],
83           'outputs': [
84             '<(SHARED_INTERMEDIATE_DIR)/wcs_sandbox.html',
85           ],
86           'action': [
87             'python', 'webapp/build-html.py',
88             '<(SHARED_INTERMEDIATE_DIR)/wcs_sandbox.html',
89             '<(remoting_webapp_template_wcs_sandbox)',
90             '--js', '<@(remoting_webapp_wcs_sandbox_html_js_files)',
91           ],
92         },
93         {
94           'action_name': 'Build Remoting Webapp background.html',
95           'inputs': [
96             'webapp/build-html.py',
97             '<(remoting_webapp_template_background)',
98           ],
99           'outputs': [
100             '<(SHARED_INTERMEDIATE_DIR)/background.html',
101           ],
102           'action': [
103             'python', 'webapp/build-html.py',
104             '<(SHARED_INTERMEDIATE_DIR)/background.html',
105             '<(remoting_webapp_template_background)',
106             '--js', '<@(remoting_webapp_background_js_files)',
107           ],
108         },
109       ],
110     },  # end of target 'remoting_webapp_html'
112     {
113       'target_name': 'remoting_webapp',
114       'type': 'none',
115       'dependencies': [
116         'remoting_webapp_v1',
117         'remoting_webapp_v2',
118       ],
119       'conditions': [
120         ['disable_nacl==0 and disable_nacl_untrusted==0', {
121           'dependencies': [
122             'remoting_webapp_v2_pnacl',
123           ],
124         }]
125       ],
126     },  # end of target 'remoting_webapp'
128     {
129       'target_name': 'remoting_webapp_v1',
130       'type': 'none',
131       'variables': {
132         'webapp_type': 'v1',
133         'output_dir': '<(PRODUCT_DIR)/remoting/remoting.webapp',
134         'zip_path': '<(PRODUCT_DIR)/remoting-webapp.zip',
135       },
136       'includes': [ 'remoting_webapp.gypi', ],
137     },  # end of target 'remoting_webapp_v1'
139     {
140       'target_name': 'remoting_webapp_v2',
141       'type': 'none',
142       'variables': {
143         'output_dir': '<(PRODUCT_DIR)/remoting/remoting.webapp.v2',
144         'zip_path': '<(PRODUCT_DIR)/remoting-webapp.v2.zip',
145         'webapp_type': 'v2',
146       },
147       'includes': [ 'remoting_webapp.gypi', ],
148     },  # end of target 'remoting_webapp_v2'
149   ],  # end of targets
151   'conditions': [
152     ['disable_nacl==0 and disable_nacl_untrusted==0', {
153       'targets': [
154         {
155           'target_name': 'remoting_webapp_v2_pnacl',
156           'type': 'none',
157           'variables': {
158             'output_dir': '<(PRODUCT_DIR)/remoting/remoting.webapp.v2_pnacl',
159             'zip_path': '<(PRODUCT_DIR)/remoting-webapp.v2_pnacl.zip',
160             'webapp_type': 'v2_pnacl',
161             'extra_files': [
162               'webapp/crd/remoting_client_pnacl.nmf.jinja2',
163               '<(PRODUCT_DIR)/remoting_client_plugin_newlib.pexe',
164             ],
165           },
166           'dependencies': [
167             'remoting_nacl.gyp:remoting_client_plugin_nacl',
168           ],
169           'conditions': [
170             ['buildtype == "Dev"', {
171               'variables': {
172                 'extra_files': [
173                   '<(PRODUCT_DIR)/remoting_client_plugin_newlib.pexe.debug',
174                 ],
175               },
176             }],
177           ],
178           'includes': [ 'remoting_webapp.gypi', ],
179         },  # end of target 'remoting_webapp_v2_pnacl'
180       ],
181     }],
182   ],