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