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

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: rebase Created 5 years, 11 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) 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 '../testing/gtest.gyp:gtest',
1662 ],
1663 'sources': [
1664 'common/gpu/media/vaapi_jpeg_decoder_unittest.cc',
1665 ],
1666 'include_dirs': [
1667 '<(DEPTH)/third_party/libva',
1668 ],
1669 'conditions': [
1670 ['use_x11==1', {
1671 'dependencies': [
1672 '../build/linux/system.gyp:x11',
1673 ]
1674 }, {
1675 'dependencies': [
1676 '../build/linux/system.gyp:libdrm',
1677 ]
1678 }],
1679 ],
1680 }
1654 ] 1681 ]
1655 }], 1682 }],
1656 ['chromeos==1', { 1683 ['chromeos==1', {
1657 'targets': [ 1684 'targets': [
1658 { 1685 {
1659 'target_name': 'video_encode_accelerator_unittest', 1686 'target_name': 'video_encode_accelerator_unittest',
1660 'type': 'executable', 1687 'type': 'executable',
1661 'dependencies': [ 1688 'dependencies': [
1662 '../base/base.gyp:base', 1689 '../base/base.gyp:base',
1663 '../media/media.gyp:media', 1690 '../media/media.gyp:media',
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after
2100 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 2127 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
2101 }, 2128 },
2102 ], 2129 ],
2103 }], 2130 }],
2104 ], 2131 ],
2105 }, 2132 },
2106 ], 2133 ],
2107 }], 2134 }],
2108 ], 2135 ],
2109 } 2136 }
OLDNEW
« content/common/gpu/media/vaapi_wrapper.cc ('K') | « content/content_common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698