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

Side by Side Diff: media/media.gyp

Issue 817023005: Reland: Refactor Vaapi video decoder/encoder in preparation of Freon support (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Pawel's nits Created 6 years 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 679 matching lines...) Expand 10 before | Expand all | Expand 10 after
690 'dependencies': [ 690 'dependencies': [
691 'media_java', 691 'media_java',
692 ], 692 ],
693 }], 693 }],
694 ], 694 ],
695 'defines': [ 695 'defines': [
696 'DISABLE_USER_INPUT_MONITOR', 696 'DISABLE_USER_INPUT_MONITOR',
697 ], 697 ],
698 }], 698 }],
699 # For VaapiVideoEncodeAccelerator. 699 # For VaapiVideoEncodeAccelerator.
700 ['target_arch != "arm" and chromeos == 1 and use_x11 == 1', { 700 ['target_arch != "arm" and chromeos == 1', {
701 'sources': [ 701 'sources': [
702 'filters/h264_bitstream_buffer.cc', 702 'filters/h264_bitstream_buffer.cc',
703 'filters/h264_bitstream_buffer.h', 703 'filters/h264_bitstream_buffer.h',
704 ], 704 ],
705 }], 705 }],
706 ['use_alsa==1', { 706 ['use_alsa==1', {
707 'link_settings': { 707 'link_settings': {
708 'libraries': [ 708 'libraries': [
709 '-lasound', 709 '-lasound',
710 ], 710 ],
(...skipping 1177 matching lines...) Expand 10 before | Expand all | Expand 10 after
1888 '../build/isolate.gypi', 1888 '../build/isolate.gypi',
1889 ], 1889 ],
1890 'sources': [ 1890 'sources': [
1891 'media_unittests.isolate', 1891 'media_unittests.isolate',
1892 ], 1892 ],
1893 }, 1893 },
1894 ], 1894 ],
1895 }], 1895 }],
1896 ], 1896 ],
1897 } 1897 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698