| 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 # Override to dynamically link the cras (ChromeOS audio) library. | 8 # Override to dynamically link the cras (ChromeOS audio) library. |
| 9 'use_cras%': 0, | 9 'use_cras%': 0, |
| 10 # Option e.g. for Linux distributions to link pulseaudio directly | 10 # Option e.g. for Linux distributions to link pulseaudio directly |
| (...skipping 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 643 ['android_webview_build==0', { | 643 ['android_webview_build==0', { |
| 644 'dependencies': [ | 644 'dependencies': [ |
| 645 'media_java', | 645 'media_java', |
| 646 ], | 646 ], |
| 647 }], | 647 }], |
| 648 ], | 648 ], |
| 649 'defines': [ | 649 'defines': [ |
| 650 'DISABLE_USER_INPUT_MONITOR', | 650 'DISABLE_USER_INPUT_MONITOR', |
| 651 ], | 651 ], |
| 652 }], | 652 }], |
| 653 # A simple WebM encoder for animated avatars on ChromeOS. | |
| 654 ['chromeos==1', { | |
| 655 'dependencies': [ | |
| 656 '../third_party/libvpx/libvpx.gyp:libvpx', | |
| 657 '../third_party/libyuv/libyuv.gyp:libyuv', | |
| 658 ], | |
| 659 'sources': [ | |
| 660 'formats/webm/chromeos/ebml_writer.cc', | |
| 661 'formats/webm/chromeos/ebml_writer.h', | |
| 662 'formats/webm/chromeos/webm_encoder.cc', | |
| 663 'formats/webm/chromeos/webm_encoder.h', | |
| 664 ], | |
| 665 }], | |
| 666 # For VaapiVideoEncodeAccelerator. | 653 # For VaapiVideoEncodeAccelerator. |
| 667 ['target_arch != "arm" and chromeos == 1 and use_x11 == 1', { | 654 ['target_arch != "arm" and chromeos == 1 and use_x11 == 1', { |
| 668 'sources': [ | 655 'sources': [ |
| 669 'filters/h264_bitstream_buffer.cc', | 656 'filters/h264_bitstream_buffer.cc', |
| 670 'filters/h264_bitstream_buffer.h', | 657 'filters/h264_bitstream_buffer.h', |
| 671 ], | 658 ], |
| 672 }], | 659 }], |
| 673 ['OS!="ios"', { | 660 ['OS!="ios"', { |
| 674 'dependencies': [ | 661 'dependencies': [ |
| 675 '../third_party/libyuv/libyuv.gyp:libyuv', | 662 '../third_party/libyuv/libyuv.gyp:libyuv', |
| (...skipping 1086 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1762 ], | 1749 ], |
| 1763 }], | 1750 }], |
| 1764 ], | 1751 ], |
| 1765 }], | 1752 }], |
| 1766 ], | 1753 ], |
| 1767 }, | 1754 }, |
| 1768 ], | 1755 ], |
| 1769 }], | 1756 }], |
| 1770 ], | 1757 ], |
| 1771 } | 1758 } |
| OLD | NEW |