OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'includes': [ | 6 'includes': [ |
7 '../third_party/mesa/mesa.gypi', | 7 '../third_party/mesa/mesa.gypi', |
8 ], | 8 ], |
9 'variables': { | 9 'variables': { |
10 'chromium_code': 1, # Use higher warning level. | 10 'chromium_code': 1, # Use higher warning level. |
(...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
569 'dependencies': [ | 569 'dependencies': [ |
570 'ppapi_c', | 570 'ppapi_c', |
571 '../base/base.gyp:base', | 571 '../base/base.gyp:base', |
572 ], | 572 ], |
573 'include_dirs': [ | 573 'include_dirs': [ |
574 '..', | 574 '..', |
575 ], | 575 ], |
576 'sources': [ | 576 'sources': [ |
577 'shared_impl/audio_impl.cc', | 577 'shared_impl/audio_impl.cc', |
578 'shared_impl/audio_impl.h', | 578 'shared_impl/audio_impl.h', |
| 579 'shared_impl/image_data_impl.cc', |
| 580 'shared_impl/image_data_impl.h', |
579 ], | 581 ], |
580 'conditions': [ | 582 'conditions': [ |
581 ['OS=="win"', { | 583 ['OS=="win"', { |
582 'msvs_guid': 'E7420D65-A885-41EB-B4BE-04DE0C97033B', | 584 'msvs_guid': 'E7420D65-A885-41EB-B4BE-04DE0C97033B', |
583 }], | 585 }], |
584 ], | 586 ], |
585 }, | 587 }, |
586 { | 588 { |
587 'target_name': 'ppapi_proxy', | 589 'target_name': 'ppapi_proxy', |
588 'type': 'static_library', | 590 'type': 'static_library', |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
680 ['OS=="win"', { | 682 ['OS=="win"', { |
681 }], | 683 }], |
682 ['OS=="linux"', { | 684 ['OS=="linux"', { |
683 }], | 685 }], |
684 ['OS=="mac"', { | 686 ['OS=="mac"', { |
685 }] | 687 }] |
686 ], | 688 ], |
687 }, | 689 }, |
688 ], | 690 ], |
689 } | 691 } |
OLD | NEW |