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

Side by Side Diff: content/content_tests.gypi

Issue 1125263005: MJPEG acceleration for V4L2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address kcwu's comments Created 5 years, 6 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 'layouttest_support_content_sources': [ 7 'layouttest_support_content_sources': [
8 'public/test/layouttest_support.h', 8 'public/test/layouttest_support.h',
9 'public/test/nested_message_pump_android.cc', 9 'public/test/nested_message_pump_android.cc',
10 'public/test/nested_message_pump_android.h', 10 'public/test/nested_message_pump_android.h',
(...skipping 1704 matching lines...) Expand 10 before | Expand all | Expand 10 after
1715 '../ui/gfx/x/gfx_x11.gyp:gfx_x11', 1715 '../ui/gfx/x/gfx_x11.gyp:gfx_x11',
1716 ], 1716 ],
1717 }], 1717 }],
1718 ['use_ozone==1', { 1718 ['use_ozone==1', {
1719 'dependencies': [ 1719 'dependencies': [
1720 '../ui/ozone/ozone.gyp:ozone', 1720 '../ui/ozone/ozone.gyp:ozone',
1721 ], 1721 ],
1722 }], 1722 }],
1723 ], 1723 ],
1724 }, 1724 },
1725 {
1726 'target_name': 'jpeg_decode_accelerator_unittest',
1727 'type': 'executable',
1728 'dependencies': [
1729 '../base/base.gyp:base',
1730 '../media/media.gyp:media',
1731 '../media/media.gyp:media_test_support',
1732 '../testing/gtest.gyp:gtest',
1733 '../third_party/libyuv/libyuv.gyp:libyuv',
1734 '../ui/gfx/gfx.gyp:gfx',
1735 '../ui/gfx/gfx.gyp:gfx_geometry',
1736 '../ui/gfx/gfx.gyp:gfx_test_support',
1737 '../ui/gl/gl.gyp:gl',
1738 'content.gyp:content',
1739 ],
1740 'sources': [
1741 'common/gpu/media/jpeg_decode_accelerator_unittest.cc',
1742 ],
1743 'include_dirs': [
1744 '<(DEPTH)/third_party/libva',
1745 '<(DEPTH)/third_party/libyuv',
1746 ],
1747 'conditions': [
1748 ['use_x11==1', {
1749 'dependencies': [
1750 '../ui/gfx/x/gfx_x11.gyp:gfx_x11',
1751 ],
1752 }],
1753 ['use_ozone==1', {
1754 'dependencies': [
1755 '../ui/ozone/ozone.gyp:ozone',
1756 ],
1757 }],
1758 ],
1759 }
1725 ] 1760 ]
1726 }], 1761 }],
1727 ['OS == "android"', { 1762 ['OS == "android"', {
1728 'targets': [ 1763 'targets': [
1729 { 1764 {
1730 # TODO(GN) 1765 # TODO(GN)
1731 'target_name': 'content_gl_tests_apk', 1766 'target_name': 'content_gl_tests_apk',
1732 'type': 'none', 1767 'type': 'none',
1733 'dependencies': [ 1768 'dependencies': [
1734 'content_gl_tests', 1769 'content_gl_tests',
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after
2159 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 2194 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
2160 }, 2195 },
2161 ], 2196 ],
2162 }], 2197 }],
2163 ], 2198 ],
2164 }, 2199 },
2165 ], 2200 ],
2166 }], 2201 }],
2167 ], 2202 ],
2168 } 2203 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698