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', |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 'variables': { | 179 'variables': { |
180 'extra_files': [ | 180 'extra_files': [ |
181 '<(PRODUCT_DIR)/remoting_client_plugin_newlib.pexe.debug', | 181 '<(PRODUCT_DIR)/remoting_client_plugin_newlib.pexe.debug', |
182 ], | 182 ], |
183 }, | 183 }, |
184 }], | 184 }], |
185 ], | 185 ], |
186 'includes': [ 'remoting_webapp.gypi', ], | 186 'includes': [ 'remoting_webapp.gypi', ], |
187 }, # end of target 'remoting_webapp' | 187 }, # end of target 'remoting_webapp' |
188 ], # end of targets | 188 ], # end of targets |
| 189 |
| 190 'conditions': [ |
| 191 ['OS=="ios" or OS=="android"', { |
| 192 'targets': [ |
| 193 { |
| 194 'target_name': 'remoting_opengl_renderer', |
| 195 'type': '<(component)', |
| 196 'sources': [ |
| 197 '<@(remoting_opengl_renderer_sources)', |
| 198 ], |
| 199 'dependencies': [ |
| 200 '../third_party/khronos/khronos.gyp:khronos_headers', |
| 201 '../third_party/webrtc/webrtc.gyp:webrtc' |
| 202 ] |
| 203 } # end of target 'remoting_opengl_renderer' |
| 204 ] |
| 205 }] # end of conditions 'OS=="ios" or OS=="android"' |
| 206 ] |
189 } | 207 } |
OLD | NEW |