1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'targets': [
{
'target_name': 'remoting_client_plugin',
'type': 'static_library',
'variables': { 'enable_wexit_time_destructors': 1, },
'defines': [
'HAVE_STDINT_H', # Required by on2_integer.h
],
'dependencies': [
'../net/net.gyp:net',
'../ppapi/ppapi.gyp:ppapi_cpp_objects',
'../third_party/webrtc/modules/modules.gyp:desktop_capture',
'../ui/events/events.gyp:dom4_keycode_converter',
'remoting_base',
'remoting_client',
'remoting_protocol',
],
'sources': [
'<@(remoting_client_plugin_sources)',
'client/plugin/pepper_entrypoints.cc',
'client/plugin/pepper_entrypoints.h',
],
'conditions' : [
[ 'chromeos==0', {
'sources!': [
'client/plugin/normalizing_input_filter_cros.cc',
],
}],
],
}, # end of target 'remoting_client_plugin'
{
'target_name': 'remoting_client',
'type': 'static_library',
'variables': { 'enable_wexit_time_destructors': 1, },
'dependencies': [
'remoting_base',
'remoting_protocol',
'../third_party/libyuv/libyuv.gyp:libyuv',
'../third_party/webrtc/modules/modules.gyp:desktop_capture',
'../third_party/libwebm/libwebm.gyp:libwebm',
],
'sources': [
'<@(remoting_client_sources)',
],
}, # end of target 'remoting_client'
{
'target_name': 'remoting_webapp_html',
'type': 'none',
'actions': [
{
'action_name': 'Build Remoting Webapp main.html',
'inputs': [
'webapp/build-html.py',
'<(remoting_webapp_template_main)',
'<@(remoting_webapp_template_files)',
],
'outputs': [
'<(SHARED_INTERMEDIATE_DIR)/main.html',
],
'action': [
'python', 'webapp/build-html.py',
'<(SHARED_INTERMEDIATE_DIR)/main.html',
'<(remoting_webapp_template_main)',
'--template', '<@(remoting_webapp_template_files)',
'--js', '<@(remoting_webapp_main_html_js_files)',
],
},
{
'action_name': 'Build Remoting Webapp wcs_sandbox.html',
'inputs': [
'webapp/build-html.py',
'<(remoting_webapp_template_wcs_sandbox)',
],
'outputs': [
'<(SHARED_INTERMEDIATE_DIR)/wcs_sandbox.html',
],
'action': [
'python', 'webapp/build-html.py',
'<(SHARED_INTERMEDIATE_DIR)/wcs_sandbox.html',
'<(remoting_webapp_template_wcs_sandbox)',
'--js', '<@(remoting_webapp_wcs_sandbox_html_js_files)',
],
},
],
}, # end of target 'remoting_webapp_html'
{
'target_name': 'remoting_webapp',
'type': 'none',
'dependencies': [
'remoting_webapp_v1',
'remoting_webapp_v2',
],
}, # end of target 'remoting_webapp'
{
'target_name': 'remoting_webapp_v1',
'type': 'none',
'variables': {
'webapp_type': 'v1',
'include_host_plugin': '<(enable_remoting_host)',
'output_dir': '<(PRODUCT_DIR)/remoting/remoting.webapp',
'zip_path': '<(PRODUCT_DIR)/remoting-webapp.zip',
},
'includes': [ 'remoting_webapp.gypi', ],
}, # end of target 'remoting_webapp_v1'
{
'target_name': 'remoting_webapp_v2',
'type': 'none',
'variables': {
'webapp_type': 'v2',
'output_dir': '<(PRODUCT_DIR)/remoting/remoting.webapp.v2',
'zip_path': '<(PRODUCT_DIR)/remoting-webapp.v2.zip',
'extra_files': [ 'webapp/background.js' ],
},
'includes': [ 'remoting_webapp.gypi', ],
}, # end of target 'remoting_webapp_v2'
], # end of targets
}
|