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

Side by Side Diff: content/content_tests.gypi

Issue 825843002: Add JPEG decoder for VAAPI JPEG decode acceleration (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mjpeg-vaapi-jpeg-parser
Patch Set: Created 5 years, 10 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
« no previous file with comments | « content/content_common.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 'use_v4lplugin%': 0, 7 'use_v4lplugin%': 0,
8 'layouttest_support_content_sources': [ 8 'layouttest_support_content_sources': [
9 'public/test/layouttest_support.h', 9 'public/test/layouttest_support.h',
10 'public/test/nested_message_pump_android.cc', 10 'public/test/nested_message_pump_android.cc',
(...skipping 1633 matching lines...) Expand 10 before | Expand all | Expand 10 after
1644 'dependencies': [ 1644 'dependencies': [
1645 '../build/linux/system.gyp:x11', 1645 '../build/linux/system.gyp:x11',
1646 ] 1646 ]
1647 }, { 1647 }, {
1648 'dependencies': [ 1648 'dependencies': [
1649 '../build/linux/system.gyp:libdrm', 1649 '../build/linux/system.gyp:libdrm',
1650 ] 1650 ]
1651 }], 1651 }],
1652 ], 1652 ],
1653 }, 1653 },
1654 {
1655 'target_name': 'vaapi_jpeg_decoder_unittest',
1656 'type': '<(gtest_target_type)',
1657 'dependencies': [
1658 'content.gyp:content_common',
1659 '../base/base.gyp:base',
1660 '../media/media.gyp:media',
1661 '../media/media.gyp:media_test_support',
1662 '../testing/gtest.gyp:gtest',
1663 ],
1664 'sources': [
1665 'common/gpu/media/vaapi_jpeg_decoder_unittest.cc',
1666 ],
1667 'include_dirs': [
1668 '<(DEPTH)/third_party/libva',
1669 ],
1670 'conditions': [
1671 ['use_x11==1', {
1672 'dependencies': [
1673 '../build/linux/system.gyp:x11',
1674 ]
1675 }, {
1676 'dependencies': [
1677 '../build/linux/system.gyp:libdrm',
1678 ]
1679 }],
1680 ],
1681 }
1654 ] 1682 ]
1655 }], 1683 }],
1656 ['chromeos==1', { 1684 ['chromeos==1', {
1657 'targets': [ 1685 'targets': [
1658 { 1686 {
1659 'target_name': 'video_encode_accelerator_unittest', 1687 'target_name': 'video_encode_accelerator_unittest',
1660 'type': 'executable', 1688 'type': 'executable',
1661 'dependencies': [ 1689 'dependencies': [
1662 '../base/base.gyp:base', 1690 '../base/base.gyp:base',
1663 '../media/media.gyp:media', 1691 '../media/media.gyp:media',
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after
2100 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 2128 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
2101 }, 2129 },
2102 ], 2130 ],
2103 }], 2131 }],
2104 ], 2132 ],
2105 }, 2133 },
2106 ], 2134 ],
2107 }], 2135 }],
2108 ], 2136 ],
2109 } 2137 }
OLDNEW
« no previous file with comments | « content/content_common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698