OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 # These are defined here because we need to build this library twice. Once | 8 # These are defined here because we need to build this library twice. Once |
9 # with extra parameter checking. Once with no parameter checking to be 100% | 9 # with extra parameter checking. Once with no parameter checking to be 100% |
10 # OpenGL ES 2.0 compliant for the conformance tests. | 10 # OpenGL ES 2.0 compliant for the conformance tests. |
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
346 'gles2_c_lib', | 346 'gles2_c_lib', |
347 ], | 347 ], |
348 'sources': [ | 348 'sources': [ |
349 'command_buffer/client/gles2_demo_c.h', | 349 'command_buffer/client/gles2_demo_c.h', |
350 'command_buffer/client/gles2_demo_c.c', | 350 'command_buffer/client/gles2_demo_c.c', |
351 'command_buffer/client/gles2_demo_cc.h', | 351 'command_buffer/client/gles2_demo_cc.h', |
352 'command_buffer/client/gles2_demo_cc.cc', | 352 'command_buffer/client/gles2_demo_cc.cc', |
353 ], | 353 ], |
354 }, | 354 }, |
355 { | 355 { |
356 'target_name': 'pgl', | |
357 'type': 'static_library', | |
358 'dependencies': [ | |
359 'command_buffer_client', | |
360 'gles2_c_lib', | |
361 '../third_party/npapi/npapi.gyp:npapi', | |
362 ], | |
363 'include_dirs': [ | |
364 '..', | |
365 ], | |
366 'all_dependent_settings': { | |
367 'include_dirs': [ | |
368 '../third_party/npapi/bindings', | |
369 ], | |
370 }, | |
371 'sources': [ | |
372 'pgl/command_buffer_pepper.cc', | |
373 'pgl/command_buffer_pepper.h', | |
374 'pgl/pgl_proc_address.cc', | |
375 'pgl/pgl.cc', | |
376 'pgl/pgl.h', | |
377 ], | |
378 }, | |
379 { | |
380 'target_name': 'gpu_ipc', | 356 'target_name': 'gpu_ipc', |
381 'type': 'static_library', | 357 'type': 'static_library', |
382 'dependencies': [ | 358 'dependencies': [ |
383 'command_buffer_client', | 359 'command_buffer_client', |
384 'gles2_c_lib', | 360 'gles2_c_lib', |
385 '../base/base.gyp:base', | 361 '../base/base.gyp:base', |
386 ], | 362 ], |
387 'include_dirs': [ | 363 'include_dirs': [ |
388 '..', | 364 '..', |
389 ], | 365 ], |
(...skipping 30 matching lines...) Expand all Loading... |
420 }, | 396 }, |
421 ], | 397 ], |
422 ], | 398 ], |
423 } | 399 } |
424 | 400 |
425 # Local Variables: | 401 # Local Variables: |
426 # tab-width:2 | 402 # tab-width:2 |
427 # indent-tabs-mode:nil | 403 # indent-tabs-mode:nil |
428 # End: | 404 # End: |
429 # vim: set expandtab tabstop=2 shiftwidth=2: | 405 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |