| 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)', | |
| 24 ], | 23 ], |
| 25 'conditions': [ | 24 'conditions': [ |
| 26 ['buildtype!="Official"', { | 25 ['buildtype!="Official"', { |
| 27 'defines': [ | 26 'defines': [ |
| 28 'ENABLE_WEBRTC_REMOTING_CLIENT' | 27 'ENABLE_WEBRTC_REMOTING_CLIENT' |
| 29 ] | 28 ] |
| 30 }] | 29 }] |
| 31 ], | 30 ], |
| 32 }, # end of target 'remoting_client' | 31 }, # end of target 'remoting_client' |
| 33 | 32 |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 'extra_files': [ | 179 'extra_files': [ |
| 181 '<(PRODUCT_DIR)/remoting_client_plugin_newlib.pexe.debug', | 180 '<(PRODUCT_DIR)/remoting_client_plugin_newlib.pexe.debug', |
| 182 ], | 181 ], |
| 183 }, | 182 }, |
| 184 }], | 183 }], |
| 185 ], | 184 ], |
| 186 'includes': [ 'remoting_webapp.gypi', ], | 185 'includes': [ 'remoting_webapp.gypi', ], |
| 187 }, # end of target 'remoting_webapp' | 186 }, # end of target 'remoting_webapp' |
| 188 ], # end of targets | 187 ], # end of targets |
| 189 } | 188 } |
| OLD | NEW |