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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 'gl_surface_nsview.h', | 252 'gl_surface_nsview.h', |
253 ], | 253 ], |
254 }], | 254 }], |
255 ['OS=="android"', { | 255 ['OS=="android"', { |
256 'sources': [ | 256 'sources': [ |
257 'async_pixel_transfer_delegate_android.cc', | 257 'async_pixel_transfer_delegate_android.cc', |
258 'async_pixel_transfer_delegate_android.h', | 258 'async_pixel_transfer_delegate_android.h', |
259 'android_native_window.cc', | 259 'android_native_window.cc', |
260 'android_native_window.h', | 260 'android_native_window.h', |
261 ], | 261 ], |
| 262 'link_settings': { |
| 263 'libraries': [ |
| 264 '-landroid', |
| 265 ], |
| 266 }, |
262 'sources!': [ | 267 'sources!': [ |
263 'gl_context_osmesa.cc', | 268 'gl_context_osmesa.cc', |
264 'system_monitor_posix.cc', | 269 'system_monitor_posix.cc', |
265 ], | 270 ], |
266 'defines': [ | 271 'defines': [ |
267 'GL_GLEXT_PROTOTYPES', | 272 'GL_GLEXT_PROTOTYPES', |
268 'EGL_EGLEXT_PROTOTYPES', | 273 'EGL_EGLEXT_PROTOTYPES', |
269 ], | 274 ], |
270 }], | 275 }], |
271 ], | 276 ], |
(...skipping 19 matching lines...) Expand all Loading... |
291 ], | 296 ], |
292 }, | 297 }, |
293 'sources': [ | 298 'sources': [ |
294 'gl_mock.h', | 299 'gl_mock.h', |
295 'gl_mock.cc', | 300 'gl_mock.cc', |
296 '<(gl_binding_output_dir)/gl_mock_autogen_gl.h', | 301 '<(gl_binding_output_dir)/gl_mock_autogen_gl.h', |
297 ], | 302 ], |
298 }, | 303 }, |
299 ], | 304 ], |
300 } | 305 } |
OLD | NEW |