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 ], | 257 ], |
258 'defines': [ | 258 'defines': [ |
259 'GL_GLEXT_PROTOTYPES', | 259 'GL_GLEXT_PROTOTYPES', |
260 'EGL_EGLEXT_PROTOTYPES', | 260 'EGL_EGLEXT_PROTOTYPES', |
261 ], | 261 ], |
262 }], | 262 }], |
263 ['OS!="android"', { | 263 ['OS!="android"', { |
264 'sources/': [ ['exclude', '^android/'] ], | 264 'sources/': [ ['exclude', '^android/'] ], |
265 }], | 265 }], |
266 ['use_ozone==1', { | 266 ['use_ozone==1', { |
| 267 'sources': [ |
| 268 'gl_image_ozone_native_pixmap.cc', |
| 269 'gl_image_ozone_native_pixmap.h', |
| 270 ], |
267 'dependencies': [ | 271 'dependencies': [ |
268 '../ozone/ozone.gyp:ozone', | 272 '../ozone/ozone.gyp:ozone', |
269 '../ozone/ozone.gyp:ozone_base', | 273 '../ozone/ozone.gyp:ozone_base', |
270 ], | 274 ], |
271 }], | 275 }], |
272 ], | 276 ], |
273 }, | 277 }, |
274 { | 278 { |
275 'target_name': 'gl_unittest_utils', | 279 'target_name': 'gl_unittest_utils', |
276 'type': 'static_library', | 280 'type': 'static_library', |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
341 ], | 345 ], |
342 'variables': { | 346 'variables': { |
343 'jni_gen_package': 'ui/gl', | 347 'jni_gen_package': 'ui/gl', |
344 }, | 348 }, |
345 'includes': [ '../../build/jni_generator.gypi' ], | 349 'includes': [ '../../build/jni_generator.gypi' ], |
346 }, | 350 }, |
347 ], | 351 ], |
348 }], | 352 }], |
349 ], | 353 ], |
350 } | 354 } |
OLD | NEW |