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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 'gl_egl_api_implementation.cc', | 200 'gl_egl_api_implementation.cc', |
201 'gl_egl_api_implementation.h', | 201 'gl_egl_api_implementation.h', |
202 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.cc', | 202 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.cc', |
203 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.h', | 203 '<(gl_binding_output_dir)/gl_bindings_autogen_glx.h', |
204 ], | 204 ], |
205 'all_dependent_settings': { | 205 'all_dependent_settings': { |
206 'defines': [ | 206 'defines': [ |
207 'GL_GLEXT_PROTOTYPES', | 207 'GL_GLEXT_PROTOTYPES', |
208 ], | 208 ], |
209 }, | 209 }, |
210 'link_settings': { | |
211 'libraries': [ | |
212 '-lX11', | |
213 '-lXcomposite', | |
214 ], | |
215 }, | |
216 'dependencies': [ | 210 'dependencies': [ |
217 '<(DEPTH)/build/linux/system.gyp:x11', | 211 '<(DEPTH)/build/linux/system.gyp:x11', |
218 '<(DEPTH)/build/linux/system.gyp:xcomposite', | 212 '<(DEPTH)/build/linux/system.gyp:xcomposite', |
219 '<(DEPTH)/build/linux/system.gyp:xext', | 213 '<(DEPTH)/build/linux/system.gyp:xext', |
220 ], | 214 ], |
221 }], | 215 }], |
222 ['OS=="win"', { | 216 ['OS=="win"', { |
223 'sources': [ | 217 'sources': [ |
224 'gl_context_wgl.cc', | 218 'gl_context_wgl.cc', |
225 'gl_context_wgl.h', | 219 'gl_context_wgl.h', |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
354 'variables': { | 348 'variables': { |
355 'jni_gen_package': 'ui/gl', | 349 'jni_gen_package': 'ui/gl', |
356 'jni_generator_ptr_type': 'long', | 350 'jni_generator_ptr_type': 'long', |
357 }, | 351 }, |
358 'includes': [ '../../build/jni_generator.gypi' ], | 352 'includes': [ '../../build/jni_generator.gypi' ], |
359 }, | 353 }, |
360 ], | 354 ], |
361 }], | 355 }], |
362 ], | 356 ], |
363 } | 357 } |
OLD | NEW |