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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 ], | 267 ], |
268 }, | 268 }, |
269 }], | 269 }], |
270 ['OS=="android"', { | 270 ['OS=="android"', { |
271 'dependencies': [ | 271 'dependencies': [ |
272 'gl_jni_headers', | 272 'gl_jni_headers', |
273 ], | 273 ], |
274 'sources': [ | 274 'sources': [ |
275 'gl_image_egl.cc', | 275 'gl_image_egl.cc', |
276 'gl_image_egl.h', | 276 'gl_image_egl.h', |
| 277 'gl_image_surface_texture.cc', |
| 278 'gl_image_surface_texture.h', |
277 ], | 279 ], |
278 'link_settings': { | 280 'link_settings': { |
279 'libraries': [ | 281 'libraries': [ |
280 '-landroid', | 282 '-landroid', |
281 ], | 283 ], |
282 }, | 284 }, |
283 'sources!': [ | 285 'sources!': [ |
284 'system_monitor_posix.cc', | 286 'system_monitor_posix.cc', |
285 ], | 287 ], |
286 'defines': [ | 288 'defines': [ |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
353 'variables': { | 355 'variables': { |
354 'jni_gen_package': 'ui/gl', | 356 'jni_gen_package': 'ui/gl', |
355 'jni_generator_ptr_type': 'long', | 357 'jni_generator_ptr_type': 'long', |
356 }, | 358 }, |
357 'includes': [ '../../build/jni_generator.gypi' ], | 359 'includes': [ '../../build/jni_generator.gypi' ], |
358 }, | 360 }, |
359 ], | 361 ], |
360 }], | 362 }], |
361 ], | 363 ], |
362 } | 364 } |
OLD | NEW |