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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 'gl_export.h', | 65 'gl_export.h', |
66 'gl_fence.cc', | 66 'gl_fence.cc', |
67 'gl_fence.h', | 67 'gl_fence.h', |
68 'gl_gl_api_implementation.cc', | 68 'gl_gl_api_implementation.cc', |
69 'gl_gl_api_implementation.h', | 69 'gl_gl_api_implementation.h', |
70 'gl_image.cc', | 70 'gl_image.cc', |
71 'gl_image.h', | 71 'gl_image.h', |
72 'gl_image_android.cc', | 72 'gl_image_android.cc', |
73 'gl_image_mac.cc', | 73 'gl_image_mac.cc', |
74 'gl_image_ozone.cc', | 74 'gl_image_ozone.cc', |
| 75 'gl_image_shm.cc', |
| 76 'gl_image_shm.h', |
75 'gl_image_stub.cc', | 77 'gl_image_stub.cc', |
76 'gl_image_stub.h', | 78 'gl_image_stub.h', |
77 'gl_image_win.cc', | 79 'gl_image_win.cc', |
78 'gl_image_x11.cc', | 80 'gl_image_x11.cc', |
79 'gl_implementation.cc', | 81 'gl_implementation.cc', |
80 'gl_implementation.h', | 82 'gl_implementation.h', |
81 'gl_implementation_android.cc', | 83 'gl_implementation_android.cc', |
82 'gl_implementation_linux.cc', | 84 'gl_implementation_linux.cc', |
83 'gl_implementation_linux.h', | 85 'gl_implementation_linux.h', |
84 'gl_implementation_ozone.cc', | 86 'gl_implementation_ozone.cc', |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 'include_dirs': [ | 302 'include_dirs': [ |
301 '<(gl_binding_output_dir)', | 303 '<(gl_binding_output_dir)', |
302 '../..', | 304 '../..', |
303 ], | 305 ], |
304 'direct_dependent_settings': { | 306 'direct_dependent_settings': { |
305 'include_dirs': [ | 307 'include_dirs': [ |
306 '<(gl_binding_output_dir)', | 308 '<(gl_binding_output_dir)', |
307 ], | 309 ], |
308 }, | 310 }, |
309 'sources': [ | 311 'sources': [ |
310 'gl_image_mock.cc', | |
311 'gl_image_mock.h', | |
312 'gl_mock.h', | 312 'gl_mock.h', |
313 'gl_mock.cc', | 313 'gl_mock.cc', |
314 '<(gl_binding_output_dir)/gl_mock_autogen_gl.h', | 314 '<(gl_binding_output_dir)/gl_mock_autogen_gl.h', |
315 ], | 315 ], |
316 }, | 316 }, |
317 ], | 317 ], |
318 'conditions': [ | 318 'conditions': [ |
319 ['OS=="android"' , { | 319 ['OS=="android"' , { |
320 'targets': [ | 320 'targets': [ |
321 { | 321 { |
(...skipping 26 matching lines...) Expand all Loading... |
348 ], | 348 ], |
349 'variables': { | 349 'variables': { |
350 'jni_gen_package': 'ui/gl', | 350 'jni_gen_package': 'ui/gl', |
351 }, | 351 }, |
352 'includes': [ '../../build/jni_generator.gypi' ], | 352 'includes': [ '../../build/jni_generator.gypi' ], |
353 }, | 353 }, |
354 ], | 354 ], |
355 }], | 355 }], |
356 ], | 356 ], |
357 } | 357 } |
OLD | NEW |