Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(564)

Side by Side Diff: media/media.gyp

Issue 490233002: VaapiVideoAccelerator: make Vaapi accelerator work with ozone (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 633 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 # For VaapiVideoEncodeAccelerator. 653 # For VaapiVideoEncodeAccelerator.
654 ['target_arch != "arm" and chromeos == 1 and use_x11 == 1', { 654 ['target_arch != "arm" and chromeos == 1', {
655 'sources': [ 655 'sources': [
656 'filters/h264_bitstream_buffer.cc', 656 'filters/h264_bitstream_buffer.cc',
657 'filters/h264_bitstream_buffer.h', 657 'filters/h264_bitstream_buffer.h',
658 ], 658 ],
659 }], 659 }],
660 ['use_alsa==1', { 660 ['use_alsa==1', {
661 'link_settings': { 661 'link_settings': {
662 'libraries': [ 662 'libraries': [
663 '-lasound', 663 '-lasound',
664 ], 664 ],
(...skipping 1080 matching lines...) Expand 10 before | Expand all | Expand 10 after
1745 ], 1745 ],
1746 }], 1746 }],
1747 ], 1747 ],
1748 }], 1748 }],
1749 ], 1749 ],
1750 }, 1750 },
1751 ], 1751 ],
1752 }], 1752 }],
1753 ], 1753 ],
1754 } 1754 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698