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 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 'include_dirs': [ | 294 'include_dirs': [ |
295 '<(gl_binding_output_dir)', | 295 '<(gl_binding_output_dir)', |
296 '../..', | 296 '../..', |
297 ], | 297 ], |
298 'direct_dependent_settings': { | 298 'direct_dependent_settings': { |
299 'include_dirs': [ | 299 'include_dirs': [ |
300 '<(gl_binding_output_dir)', | 300 '<(gl_binding_output_dir)', |
301 ], | 301 ], |
302 }, | 302 }, |
303 'sources': [ | 303 'sources': [ |
| 304 'gl_image_mock.cc', |
| 305 'gl_image_mock.h', |
304 'gl_mock.h', | 306 'gl_mock.h', |
305 'gl_mock.cc', | 307 'gl_mock.cc', |
306 '<(gl_binding_output_dir)/gl_mock_autogen_gl.h', | 308 '<(gl_binding_output_dir)/gl_mock_autogen_gl.h', |
307 ], | 309 ], |
308 }, | 310 }, |
309 ], | 311 ], |
310 'conditions': [ | 312 'conditions': [ |
311 ['OS=="android"' , { | 313 ['OS=="android"' , { |
312 'targets': [ | 314 'targets': [ |
313 { | 315 { |
(...skipping 26 matching lines...) Expand all Loading... |
340 ], | 342 ], |
341 'variables': { | 343 'variables': { |
342 'jni_gen_package': 'ui/gl', | 344 'jni_gen_package': 'ui/gl', |
343 }, | 345 }, |
344 'includes': [ '../../build/jni_generator.gypi' ], | 346 'includes': [ '../../build/jni_generator.gypi' ], |
345 }, | 347 }, |
346 ], | 348 ], |
347 }], | 349 }], |
348 ], | 350 ], |
349 } | 351 } |
OLD | NEW |