OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 # This is defined here because we need to compile this set of files | 8 # This is defined here because we need to compile this set of files |
9 # twice with different defines. Once so it calls real GL, again so it | 9 # twice with different defines. Once so it calls real GL, again so it |
10 # calls mock GL for the unit tests. | 10 # calls mock GL for the unit tests. |
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
403 '../third_party/npapi/npapi.gyp:npapi', | 403 '../third_party/npapi/npapi.gyp:npapi', |
404 ], | 404 ], |
405 'all_dependent_settings': { | 405 'all_dependent_settings': { |
406 'include_dirs': [ | 406 'include_dirs': [ |
407 '../third_party/npapi/bindings', | 407 '../third_party/npapi/bindings', |
408 ], | 408 ], |
409 }, | 409 }, |
410 'sources': [ | 410 'sources': [ |
411 'pgl/command_buffer_pepper.cc', | 411 'pgl/command_buffer_pepper.cc', |
412 'pgl/command_buffer_pepper.h', | 412 'pgl/command_buffer_pepper.h', |
| 413 'pgl/pgl_proc_address.cc', |
413 'pgl/pgl.cc', | 414 'pgl/pgl.cc', |
414 'pgl/pgl.h', | 415 'pgl/pgl.h', |
415 ], | 416 ], |
416 }, | 417 }, |
417 ], | 418 ], |
418 'conditions': [ | 419 'conditions': [ |
419 ['OS == "win"', | 420 ['OS == "win"', |
420 { | 421 { |
421 'targets': [ | 422 'targets': [ |
422 { | 423 { |
(...skipping 19 matching lines...) Expand all Loading... |
442 }, | 443 }, |
443 ], | 444 ], |
444 ], | 445 ], |
445 } | 446 } |
446 | 447 |
447 # Local Variables: | 448 # Local Variables: |
448 # tab-width:2 | 449 # tab-width:2 |
449 # indent-tabs-mode:nil | 450 # indent-tabs-mode:nil |
450 # End: | 451 # End: |
451 # vim: set expandtab tabstop=2 shiftwidth=2: | 452 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |