| 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 ], | 24 ], |
| 24 }, # end of target 'remoting_client' | 25 }, # end of target 'remoting_client' |
| 25 | 26 |
| 26 { | 27 { |
| 27 # GN version: See remoting/webapp/build_template.gni | 28 # GN version: See remoting/webapp/build_template.gni |
| 28 'target_name': 'remoting_webapp_html', | 29 'target_name': 'remoting_webapp_html', |
| 29 'type': 'none', | 30 'type': 'none', |
| 30 'actions': [ | 31 'actions': [ |
| 31 { | 32 { |
| 32 'action_name': 'Build Remoting Webapp main.html', | 33 'action_name': 'Build Remoting Webapp main.html', |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 'extra_files': [ | 174 'extra_files': [ |
| 174 '<(PRODUCT_DIR)/remoting_client_plugin_newlib.pexe.debug', | 175 '<(PRODUCT_DIR)/remoting_client_plugin_newlib.pexe.debug', |
| 175 ], | 176 ], |
| 176 }, | 177 }, |
| 177 }], | 178 }], |
| 178 ], | 179 ], |
| 179 'includes': [ 'remoting_webapp.gypi', ], | 180 'includes': [ 'remoting_webapp.gypi', ], |
| 180 }, # end of target 'remoting_webapp' | 181 }, # end of target 'remoting_webapp' |
| 181 ], # end of targets | 182 ], # end of targets |
| 182 } | 183 } |
| OLD | NEW |