| 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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 'system_monitor_posix.cc', | 285 'system_monitor_posix.cc', |
| 286 ], | 286 ], |
| 287 'defines': [ | 287 'defines': [ |
| 288 'GL_GLEXT_PROTOTYPES', | 288 'GL_GLEXT_PROTOTYPES', |
| 289 'EGL_EGLEXT_PROTOTYPES', | 289 'EGL_EGLEXT_PROTOTYPES', |
| 290 ], | 290 ], |
| 291 }], | 291 }], |
| 292 ['OS!="android"', { | 292 ['OS!="android"', { |
| 293 'sources/': [ ['exclude', '^android/'] ], | 293 'sources/': [ ['exclude', '^android/'] ], |
| 294 }], | 294 }], |
| 295 ['use_ozone==1', { | |
| 296 'sources': [ | |
| 297 'gl_image_ozone_native_pixmap.cc', | |
| 298 'gl_image_ozone_native_pixmap.h', | |
| 299 ], | |
| 300 'dependencies': [ | |
| 301 '../ozone/ozone.gyp:ozone', | |
| 302 '../ozone/ozone.gyp:ozone_base', | |
| 303 ], | |
| 304 }], | |
| 305 ], | 295 ], |
| 306 }, | 296 }, |
| 307 { | 297 { |
| 308 'target_name': 'gl_unittest_utils', | 298 'target_name': 'gl_unittest_utils', |
| 309 'type': 'static_library', | 299 'type': 'static_library', |
| 310 'dependencies': [ | 300 'dependencies': [ |
| 311 '../../testing/gmock.gyp:gmock', | 301 '../../testing/gmock.gyp:gmock', |
| 312 '../../third_party/khronos/khronos.gyp:khronos_headers', | 302 '../../third_party/khronos/khronos.gyp:khronos_headers', |
| 313 'gl', | 303 'gl', |
| 314 'init/gl_init.gyp:gl_init', | 304 'init/gl_init.gyp:gl_init', |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 ], | 372 ], |
| 383 'variables': { | 373 'variables': { |
| 384 'jni_gen_package': 'ui/gl', | 374 'jni_gen_package': 'ui/gl', |
| 385 }, | 375 }, |
| 386 'includes': [ '../../build/jni_generator.gypi' ], | 376 'includes': [ '../../build/jni_generator.gypi' ], |
| 387 }, | 377 }, |
| 388 ], | 378 ], |
| 389 }], | 379 }], |
| 390 ], | 380 ], |
| 391 } | 381 } |
| OLD | NEW |