| 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 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 576 'dependencies': [ | 576 'dependencies': [ |
| 577 'ppapi_c', | 577 'ppapi_c', |
| 578 '../base/base.gyp:base', | 578 '../base/base.gyp:base', |
| 579 ], | 579 ], |
| 580 'include_dirs': [ | 580 'include_dirs': [ |
| 581 '..', | 581 '..', |
| 582 ], | 582 ], |
| 583 'sources': [ | 583 'sources': [ |
| 584 'shared_impl/audio_impl.cc', | 584 'shared_impl/audio_impl.cc', |
| 585 'shared_impl/audio_impl.h', | 585 'shared_impl/audio_impl.h', |
| 586 'shared_impl/image_data_impl.cc', |
| 587 'shared_impl/image_data_impl.h', |
| 586 ], | 588 ], |
| 587 'conditions': [ | 589 'conditions': [ |
| 588 ['OS=="win"', { | 590 ['OS=="win"', { |
| 589 'msvs_guid': 'E7420D65-A885-41EB-B4BE-04DE0C97033B', | 591 'msvs_guid': 'E7420D65-A885-41EB-B4BE-04DE0C97033B', |
| 590 }], | 592 }], |
| 591 ], | 593 ], |
| 592 }, | 594 }, |
| 593 { | 595 { |
| 594 'target_name': 'ppapi_proxy', | 596 'target_name': 'ppapi_proxy', |
| 595 'type': 'static_library', | 597 'type': 'static_library', |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 687 ['OS=="win"', { | 689 ['OS=="win"', { |
| 688 }], | 690 }], |
| 689 ['OS=="linux"', { | 691 ['OS=="linux"', { |
| 690 }], | 692 }], |
| 691 ['OS=="mac"', { | 693 ['OS=="mac"', { |
| 692 }] | 694 }] |
| 693 ], | 695 ], |
| 694 }, | 696 }, |
| 695 ], | 697 ], |
| 696 } | 698 } |
| OLD | NEW |