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

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: Fix cc_unittests 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 1650 matching lines...) Expand 10 before | Expand all | Expand 10 after
1661 '..', 1661 '..',
1662 ], 1662 ],
1663 'sources': [ 1663 'sources': [
1664 'base/simd/convert_rgb_to_yuv_sse2.cc', 1664 'base/simd/convert_rgb_to_yuv_sse2.cc',
1665 'base/simd/convert_rgb_to_yuv_ssse3.cc', 1665 'base/simd/convert_rgb_to_yuv_ssse3.cc',
1666 'base/simd/filter_yuv_sse2.cc', 1666 'base/simd/filter_yuv_sse2.cc',
1667 ], 1667 ],
1668 }, 1668 },
1669 ], # targets 1669 ], # targets
1670 }], 1670 }],
1671 ['use_x11==1', {
1672 'targets': [
1673 {
1674 'target_name': 'player_x11',
1675 'type': 'executable',
1676 'dependencies': [
1677 'media',
1678 'shared_memory_support',
1679 '../base/base.gyp:base',
1680 '../ui/gl/gl.gyp:gl',
1681 '../ui/gfx/gfx.gyp:gfx',
1682 '../ui/gfx/gfx.gyp:gfx_geometry',
1683 '../build/linux/system.gyp:x11',
1684 '../build/linux/system.gyp:xext',
1685 '../build/linux/system.gyp:xrender',
1686 ],
1687 'conditions': [
1688 # Linux/Solaris need libdl for dlopen() and friends.
1689 ['OS=="linux" or OS=="solaris"', {
1690 'link_settings': {
1691 'libraries': [
1692 '-ldl',
1693 ],
1694 },
1695 }],
1696 ],
1697 'sources': [
1698 'tools/player_x11/data_source_logger.cc',
1699 'tools/player_x11/data_source_logger.h',
1700 'tools/player_x11/gl_video_renderer.cc',
1701 'tools/player_x11/gl_video_renderer.h',
1702 'tools/player_x11/player_x11.cc',
1703 'tools/player_x11/x11_video_renderer.cc',
1704 'tools/player_x11/x11_video_renderer.h',
1705 ],
1706 },
1707 ],
1708 }],
1709 ['OS=="android"', { 1671 ['OS=="android"', {
1710 'targets': [ 1672 'targets': [
1711 { 1673 {
1712 # TODO(GN) 1674 # TODO(GN)
1713 'target_name': 'media_unittests_apk', 1675 'target_name': 'media_unittests_apk',
1714 'type': 'none', 1676 'type': 'none',
1715 'dependencies': [ 1677 'dependencies': [
1716 'media_java', 1678 'media_java',
1717 'media_unittests', 1679 'media_unittests',
1718 ], 1680 ],
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
1987 '../build/isolate.gypi', 1949 '../build/isolate.gypi',
1988 ], 1950 ],
1989 'sources': [ 1951 'sources': [
1990 'media_unittests.isolate', 1952 'media_unittests.isolate',
1991 ], 1953 ],
1992 }, 1954 },
1993 ], 1955 ],
1994 }], 1956 }],
1995 ], 1957 ],
1996 } 1958 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698