Supervised user interstitial: Handle missing custodian profile URL.
[chromium-blink-merge.git] / remoting / remoting_client.gypi
blob3da83aef22b01d8b5d425975403ab6d9275852e1
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           'action_name': 'Build Remoting Webapp background.html',
90           'inputs': [
91             'webapp/build-html.py',
92             '<(remoting_webapp_template_background)',
93           ],
94           'outputs': [
95             '<(SHARED_INTERMEDIATE_DIR)/background.html',
96           ],
97           'action': [
98             'python', 'webapp/build-html.py',
99             '<(SHARED_INTERMEDIATE_DIR)/background.html',
100             '<(remoting_webapp_template_background)',
101             '--js', '<@(remoting_webapp_background_js_files)',
102           ],
103         },
104       ],
105     },  # end of target 'remoting_webapp_html'
107     {
108       'target_name': 'remoting_webapp',
109       'type': 'none',
110       'dependencies': [
111         'remoting_webapp_v1',
112         'remoting_webapp_v2',
113       ],
114     },  # end of target 'remoting_webapp'
116     {
117       'target_name': 'remoting_webapp_v1',
118       'type': 'none',
119       'variables': {
120         'webapp_type': 'v1',
121         'output_dir': '<(PRODUCT_DIR)/remoting/remoting.webapp',
122         'zip_path': '<(PRODUCT_DIR)/remoting-webapp.zip',
123       },
124       'includes': [ 'remoting_webapp.gypi', ],
125     },  # end of target 'remoting_webapp_v1'
127     {
128       'target_name': 'remoting_webapp_v2',
129       'type': 'none',
130       'variables': {
131         'output_dir': '<(PRODUCT_DIR)/remoting/remoting.webapp.v2',
132         'zip_path': '<(PRODUCT_DIR)/remoting-webapp.v2.zip',
133       },
134       'conditions': [
135         ['disable_nacl==0 and disable_nacl_untrusted==0', {
136           'dependencies': [
137             'remoting_nacl.gyp:remoting_client_plugin_nacl',
138           ],
139           'variables': {
140             'webapp_type': 'v2_pnacl',
141             'extra_files': [
142               'webapp/remoting_client_pnacl.nmf',
143               '<(PRODUCT_DIR)/remoting_client_plugin_newlib.pexe',
144             ],
145           },
146         }, {
147           'variables': {
148             'webapp_type': 'v2',
149           },
150         }],
151       ],
152       'includes': [ 'remoting_webapp.gypi', ],
153     },  # end of target 'remoting_webapp_v2'
154   ],  # end of targets