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

Side by Side Diff: ui/gl/gl.gyp

Issue 23868030: Make it possible to use OSMesa on Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 9
10 'targets': [ 10 'targets': [
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 'sources': [ 263 'sources': [
264 'gl_image_egl.cc', 264 'gl_image_egl.cc',
265 'gl_image_egl.h', 265 'gl_image_egl.h',
266 ], 266 ],
267 'link_settings': { 267 'link_settings': {
268 'libraries': [ 268 'libraries': [
269 '-landroid', 269 '-landroid',
270 ], 270 ],
271 }, 271 },
272 'sources!': [ 272 'sources!': [
273 'gl_context_osmesa.cc',
274 'system_monitor_posix.cc', 273 'system_monitor_posix.cc',
275 ], 274 ],
276 'defines': [ 275 'defines': [
277 'GL_GLEXT_PROTOTYPES', 276 'GL_GLEXT_PROTOTYPES',
278 'EGL_EGLEXT_PROTOTYPES', 277 'EGL_EGLEXT_PROTOTYPES',
279 ], 278 ],
280 }], 279 }],
281 ['OS!="android"', { 280 ['OS!="android"', {
282 'sources/': [ ['exclude', '^android/'] ], 281 'sources/': [ ['exclude', '^android/'] ],
283 }], 282 }],
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 ], 333 ],
335 'variables': { 334 'variables': {
336 'jni_gen_package': 'ui/gl', 335 'jni_gen_package': 'ui/gl',
337 }, 336 },
338 'includes': [ '../../build/jni_generator.gypi' ], 337 'includes': [ '../../build/jni_generator.gypi' ],
339 }, 338 },
340 ], 339 ],
341 }], 340 }],
342 ], 341 ],
343 } 342 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698