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

Side by Side Diff: content/content_tests.gypi

Issue 333253002: Add VaapiVideoEncodeAccelerator for HW-accelerated video encode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: compile fixes Created 6 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 | Annotate | Revision Log
« no previous file with comments | « content/content_common.gypi ('k') | content/public/common/content_switches.h » ('j') | 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'layouttest_support_content', 8 'target_name': 'layouttest_support_content',
9 'type': 'static_library', 9 'type': 'static_library',
10 'conditions': [ 10 'conditions': [
(...skipping 1442 matching lines...) Expand 10 before | Expand all | Expand 10 after
1453 ], 1453 ],
1454 'sources': [ 1454 'sources': [
1455 'common/gpu/media/vaapi_h264_decoder_unittest.cc', 1455 'common/gpu/media/vaapi_h264_decoder_unittest.cc',
1456 ], 1456 ],
1457 'include_dirs': [ 1457 'include_dirs': [
1458 '<(DEPTH)/third_party/libva', 1458 '<(DEPTH)/third_party/libva',
1459 ], 1459 ],
1460 }, 1460 },
1461 ] 1461 ]
1462 }], 1462 }],
1463 ['chromeos==1 and target_arch == "arm"', { 1463 ['chromeos==1 and (target_arch == "arm" or use_x11 == 1)', {
1464 'targets': [ 1464 'targets': [
1465 { 1465 {
1466 'target_name': 'video_encode_accelerator_unittest', 1466 'target_name': 'video_encode_accelerator_unittest',
1467 'type': 'executable', 1467 'type': 'executable',
1468 'dependencies': [ 1468 'dependencies': [
1469 '../base/base.gyp:base', 1469 '../base/base.gyp:base',
1470 '../media/media.gyp:media', 1470 '../media/media.gyp:media',
1471 '../media/media.gyp:media_test_support', 1471 '../media/media.gyp:media_test_support',
1472 '../testing/gtest.gyp:gtest', 1472 '../testing/gtest.gyp:gtest',
1473 '../ui/base/ui_base.gyp:ui_base', 1473 '../ui/base/ui_base.gyp:ui_base',
1474 '../ui/gfx/gfx.gyp:gfx', 1474 '../ui/gfx/gfx.gyp:gfx',
1475 '../ui/gfx/gfx.gyp:gfx_geometry', 1475 '../ui/gfx/gfx.gyp:gfx_geometry',
1476 '../ui/gl/gl.gyp:gl', 1476 '../ui/gl/gl.gyp:gl',
1477 'content.gyp:content', 1477 'content.gyp:content',
1478 ], 1478 ],
1479 'sources': [ 1479 'sources': [
1480 'common/gpu/media/video_accelerator_unittest_helpers.h', 1480 'common/gpu/media/video_accelerator_unittest_helpers.h',
1481 'common/gpu/media/video_encode_accelerator_unittest.cc', 1481 'common/gpu/media/video_encode_accelerator_unittest.cc',
1482 ], 1482 ],
1483 'include_dirs': [
1484 '<(DEPTH)/third_party/libva',
1485 '<(DEPTH)/third_party/libyuv',
1486 ],
1487 'conditions': [
1488 ['use_x11==1', {
1489 'dependencies': [
1490 '../ui/gfx/x/gfx_x11.gyp:gfx_x11',
1491 ],
1492 }],
1493 ],
1483 }, 1494 },
1484 ] 1495 ]
1485 }], 1496 }],
1486 ['OS == "android"', { 1497 ['OS == "android"', {
1487 'targets': [ 1498 'targets': [
1488 { 1499 {
1489 'target_name': 'content_gl_tests_apk', 1500 'target_name': 'content_gl_tests_apk',
1490 'type': 'none', 1501 'type': 'none',
1491 'dependencies': [ 1502 'dependencies': [
1492 'content_gl_tests', 1503 'content_gl_tests',
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
1815 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 1826 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
1816 }, 1827 },
1817 ], 1828 ],
1818 }], 1829 }],
1819 ], 1830 ],
1820 }, 1831 },
1821 ], 1832 ],
1822 }], 1833 }],
1823 ], 1834 ],
1824 } 1835 }
OLDNEW
« no previous file with comments | « content/content_common.gypi ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698