Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(678)

Side by Side Diff: remoting/remoting_client.gypi

Issue 2045963004: [Remoting] OpenGL Rendering Layer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reviewer's Feedback Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « remoting/client/sys_opengl.h ('k') | remoting/remoting_srcs.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « remoting/client/sys_opengl.h ('k') | remoting/remoting_srcs.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698