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

Side by Side Diff: media/media.gyp

Issue 1053113002: Prime the landing pad for the new video rendering pipeline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments. Revert canvas changes. Created 5 years, 8 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 1655 matching lines...) Expand 10 before | Expand all | Expand 10 after
1666 '..', 1666 '..',
1667 ], 1667 ],
1668 'sources': [ 1668 'sources': [
1669 'base/simd/convert_rgb_to_yuv_sse2.cc', 1669 'base/simd/convert_rgb_to_yuv_sse2.cc',
1670 'base/simd/convert_rgb_to_yuv_ssse3.cc', 1670 'base/simd/convert_rgb_to_yuv_ssse3.cc',
1671 'base/simd/filter_yuv_sse2.cc', 1671 'base/simd/filter_yuv_sse2.cc',
1672 ], 1672 ],
1673 }, 1673 },
1674 ], # targets 1674 ], # targets
1675 }], 1675 }],
1676 ['use_x11==1', {
1677 'targets': [
1678 {
1679 'target_name': 'player_x11',
1680 'type': 'executable',
1681 'dependencies': [
1682 'media',
1683 'shared_memory_support',
1684 '../base/base.gyp:base',
1685 '../ui/gl/gl.gyp:gl',
1686 '../ui/gfx/gfx.gyp:gfx',
1687 '../ui/gfx/gfx.gyp:gfx_geometry',
1688 '../build/linux/system.gyp:x11',
1689 '../build/linux/system.gyp:xext',
1690 '../build/linux/system.gyp:xrender',
1691 ],
1692 'conditions': [
1693 # Linux/Solaris need libdl for dlopen() and friends.
1694 ['OS=="linux" or OS=="solaris"', {
1695 'link_settings': {
1696 'libraries': [
1697 '-ldl',
1698 ],
1699 },
1700 }],
1701 ],
1702 'sources': [
1703 'tools/player_x11/data_source_logger.cc',
1704 'tools/player_x11/data_source_logger.h',
1705 'tools/player_x11/gl_video_renderer.cc',
1706 'tools/player_x11/gl_video_renderer.h',
1707 'tools/player_x11/player_x11.cc',
1708 'tools/player_x11/x11_video_renderer.cc',
1709 'tools/player_x11/x11_video_renderer.h',
1710 ],
1711 },
1712 ],
1713 }],
1714 ['OS=="android"', { 1676 ['OS=="android"', {
1715 'targets': [ 1677 'targets': [
1716 { 1678 {
1717 # TODO(GN) 1679 # TODO(GN)
1718 'target_name': 'media_unittests_apk', 1680 'target_name': 'media_unittests_apk',
1719 'type': 'none', 1681 'type': 'none',
1720 'dependencies': [ 1682 'dependencies': [
1721 'media_java', 1683 'media_java',
1722 'media_unittests', 1684 'media_unittests',
1723 ], 1685 ],
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
1992 '../build/isolate.gypi', 1954 '../build/isolate.gypi',
1993 ], 1955 ],
1994 'sources': [ 1956 'sources': [
1995 'media_unittests.isolate', 1957 'media_unittests.isolate',
1996 ], 1958 ],
1997 }, 1959 },
1998 ], 1960 ],
1999 }], 1961 }],
2000 ], 1962 ],
2001 } 1963 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698