OLD | NEW |
---|---|
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 # GN version: //remoting/client | 8 # GN version: //remoting/client |
9 'target_name': 'remoting_client', | 9 'target_name': 'remoting_client', |
10 'type': 'static_library', | 10 'type': 'static_library', |
11 'variables': { 'enable_wexit_time_destructors': 1, }, | 11 'variables': { 'enable_wexit_time_destructors': 1, }, |
12 'defines': [ | 12 'defines': [ |
13 'VERSION=<(version_full)', | 13 'VERSION=<(version_full)', |
14 ], | 14 ], |
15 'dependencies': [ | 15 'dependencies': [ |
16 'remoting_base', | 16 'remoting_base', |
17 'remoting_protocol', | 17 'remoting_protocol', |
18 '../third_party/libyuv/libyuv.gyp:libyuv', | 18 '../third_party/libyuv/libyuv.gyp:libyuv', |
19 '../third_party/webrtc/modules/modules.gyp:desktop_capture', | 19 '../third_party/webrtc/modules/modules.gyp:desktop_capture', |
20 ], | 20 ], |
21 'sources': [ | 21 'sources': [ |
22 '<@(remoting_client_sources)', | 22 '<@(remoting_client_sources)', |
23 '<@(remoting_client_standalone_sources)', | 23 '<@(remoting_client_standalone_sources)', |
24 ], | 24 ], |
25 'conditions': [ | |
26 ['buildtype!="Official"', { | |
Sergey Ulanov
2016/03/16 23:15:08
Also please add this for the remoting_client_jni i
Yuwei
2016/03/16 23:31:55
Acknowledged.
Yuwei
2016/03/16 23:58:18
Done.
| |
27 'defines': [ | |
28 'ENABLE_WEBRTC_REMOTING_CLIENT' | |
29 ] | |
30 }] | |
31 ], | |
25 }, # end of target 'remoting_client' | 32 }, # end of target 'remoting_client' |
26 | 33 |
27 { | 34 { |
28 # GN version: See remoting/webapp/build_template.gni | 35 # GN version: See remoting/webapp/build_template.gni |
29 'target_name': 'remoting_webapp_html', | 36 'target_name': 'remoting_webapp_html', |
30 'type': 'none', | 37 'type': 'none', |
31 'actions': [ | 38 'actions': [ |
32 { | 39 { |
33 'action_name': 'Build Remoting Webapp main.html', | 40 'action_name': 'Build Remoting Webapp main.html', |
34 'inputs': [ | 41 'inputs': [ |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
174 'extra_files': [ | 181 'extra_files': [ |
175 '<(PRODUCT_DIR)/remoting_client_plugin_newlib.pexe.debug', | 182 '<(PRODUCT_DIR)/remoting_client_plugin_newlib.pexe.debug', |
176 ], | 183 ], |
177 }, | 184 }, |
178 }], | 185 }], |
179 ], | 186 ], |
180 'includes': [ 'remoting_webapp.gypi', ], | 187 'includes': [ 'remoting_webapp.gypi', ], |
181 }, # end of target 'remoting_webapp' | 188 }, # end of target 'remoting_webapp' |
182 ], # end of targets | 189 ], # end of targets |
183 } | 190 } |
OLD | NEW |