Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 257 'gl_surface_nsview.h', | 257 'gl_surface_nsview.h', |
| 258 ], | 258 ], |
| 259 }], | 259 }], |
| 260 ['OS=="android"', { | 260 ['OS=="android"', { |
| 261 'dependencies': [ | 261 'dependencies': [ |
| 262 'gl_jni_headers', | 262 'gl_jni_headers', |
| 263 ], | 263 ], |
| 264 'sources': [ | 264 'sources': [ |
| 265 'gl_image_egl.cc', | 265 'gl_image_egl.cc', |
| 266 'gl_image_egl.h', | 266 'gl_image_egl.h', |
| 267 'gl_implementation_linux.cc', | |
| 268 'gl_implementation_linux.h', | |
|
Peter Beverloo
2013/10/03 19:46:42
I've tried a ton of things (regular inclusions lik
piman
2013/10/03 19:54:18
Not sure... Feel free to rename this (though I can
| |
| 267 ], | 269 ], |
| 268 'link_settings': { | 270 'link_settings': { |
| 269 'libraries': [ | 271 'libraries': [ |
| 270 '-landroid', | 272 '-landroid', |
| 271 ], | 273 ], |
| 272 }, | 274 }, |
| 273 'sources!': [ | 275 'sources!': [ |
| 274 'gl_context_osmesa.cc', | |
| 275 'system_monitor_posix.cc', | 276 'system_monitor_posix.cc', |
| 276 ], | 277 ], |
| 277 'defines': [ | 278 'defines': [ |
| 278 'GL_GLEXT_PROTOTYPES', | 279 'GL_GLEXT_PROTOTYPES', |
| 279 'EGL_EGLEXT_PROTOTYPES', | 280 'EGL_EGLEXT_PROTOTYPES', |
| 280 ], | 281 ], |
| 281 }], | 282 }], |
| 282 ['OS!="android"', { | 283 ['OS!="android"', { |
| 283 'sources/': [ ['exclude', '^android/'] ], | 284 'sources/': [ ['exclude', '^android/'] ], |
| 284 }], | 285 }], |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 335 ], | 336 ], |
| 336 'variables': { | 337 'variables': { |
| 337 'jni_gen_package': 'ui/gl', | 338 'jni_gen_package': 'ui/gl', |
| 338 }, | 339 }, |
| 339 'includes': [ '../../build/jni_generator.gypi' ], | 340 'includes': [ '../../build/jni_generator.gypi' ], |
| 340 }, | 341 }, |
| 341 ], | 342 ], |
| 342 }], | 343 }], |
| 343 ], | 344 ], |
| 344 } | 345 } |
| OLD | NEW |