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

Side by Side Diff: content/content_tests.gypi

Issue 490233002: VaapiVideoAccelerator: make Vaapi accelerator work with ozone (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Enable vaapi_h264_decoder_unittest on Ozone Created 6 years, 1 month 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 1458 matching lines...) Expand 10 before | Expand all | Expand 10 after
1469 ], 1469 ],
1470 'include_dirs': [ 1470 'include_dirs': [
1471 '..', 1471 '..',
1472 ], 1472 ],
1473 'sources': [ 1473 'sources': [
1474 'common/gpu/client/gl_helper_benchmark.cc', 1474 'common/gpu/client/gl_helper_benchmark.cc',
1475 ], 1475 ],
1476 }, 1476 },
1477 ], 1477 ],
1478 }], 1478 }],
1479 ['(chromeos==1 or OS=="win" or OS=="android") and use_ozone==0', { 1479 ['chromeos==1 or OS=="win" or OS=="android"', {
1480 'targets': [ 1480 'targets': [
1481 { 1481 {
1482 'target_name': 'video_decode_accelerator_unittest', 1482 'target_name': 'video_decode_accelerator_unittest',
1483 'type': '<(gtest_target_type)', 1483 'type': '<(gtest_target_type)',
1484 'dependencies': [ 1484 'dependencies': [
1485 '../base/base.gyp:base', 1485 '../base/base.gyp:base',
1486 '../media/media.gyp:media', 1486 '../media/media.gyp:media',
1487 '../testing/gtest.gyp:gtest', 1487 '../testing/gtest.gyp:gtest',
1488 '../ui/base/ui_base.gyp:ui_base', 1488 '../ui/base/ui_base.gyp:ui_base',
1489 '../ui/gfx/gfx.gyp:gfx', 1489 '../ui/gfx/gfx.gyp:gfx',
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
1543 '../build/linux/system.gyp:x11', # Used by rendering_helper.c c 1543 '../build/linux/system.gyp:x11', # Used by rendering_helper.c c
1544 '../ui/gfx/x/gfx_x11.gyp:gfx_x11', 1544 '../ui/gfx/x/gfx_x11.gyp:gfx_x11',
1545 ], 1545 ],
1546 }], 1546 }],
1547 ], 1547 ],
1548 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1548 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1549 'msvs_disabled_warnings': [ 4267, ], 1549 'msvs_disabled_warnings': [ 4267, ],
1550 }, 1550 },
1551 ] 1551 ]
1552 }], 1552 }],
1553 ['chromeos==1 and use_x11 == 1 and target_arch != "arm"', { 1553 ['chromeos==1 and target_arch != "arm"', {
1554 'targets': [ 1554 'targets': [
1555 { 1555 {
1556 'target_name': 'vaapi_h264_decoder_unittest', 1556 'target_name': 'vaapi_h264_decoder_unittest',
1557 'type': '<(gtest_target_type)', 1557 'type': '<(gtest_target_type)',
1558 'dependencies': [ 1558 'dependencies': [
1559 'content.gyp:content_common', 1559 'content.gyp:content_common',
1560 '../base/base.gyp:base', 1560 '../base/base.gyp:base',
1561 '../build/linux/system.gyp:x11',
1562 '../media/media.gyp:media', 1561 '../media/media.gyp:media',
1563 '../testing/gtest.gyp:gtest', 1562 '../testing/gtest.gyp:gtest',
1564 '../third_party/libyuv/libyuv.gyp:libyuv', 1563 '../third_party/libyuv/libyuv.gyp:libyuv',
1565 '../ui/gfx/gfx.gyp:gfx_geometry', 1564 '../ui/gfx/gfx.gyp:gfx_geometry',
1566 ], 1565 ],
1567 'sources': [ 1566 'sources': [
1568 'common/gpu/media/vaapi_h264_decoder_unittest.cc', 1567 'common/gpu/media/vaapi_h264_decoder_unittest.cc',
1569 ], 1568 ],
1570 'include_dirs': [ 1569 'include_dirs': [
1571 '<(DEPTH)/third_party/libva', 1570 '<(DEPTH)/third_party/libva',
1572 ], 1571 ],
1572 'conditions': [
1573 ['use_x11==1', {
1574 'dependencies': [
1575 '../build/linux/system.gyp:x11',
1576 ]
1577 }, {
1578 'dependencies': [
1579 '../build/linux/system.gyp:libdrm',
1580 ]
1581 }],
1582 ],
1573 }, 1583 },
1574 ] 1584 ]
1575 }], 1585 }],
1576 ['chromeos==1 and (target_arch == "arm" or use_x11 == 1)', { 1586 ['chromeos==1', {
1577 'targets': [ 1587 'targets': [
1578 { 1588 {
1579 'target_name': 'video_encode_accelerator_unittest', 1589 'target_name': 'video_encode_accelerator_unittest',
1580 'type': 'executable', 1590 'type': 'executable',
1581 'dependencies': [ 1591 'dependencies': [
1582 '../base/base.gyp:base', 1592 '../base/base.gyp:base',
1583 '../media/media.gyp:media', 1593 '../media/media.gyp:media',
1584 '../media/media.gyp:media_test_support', 1594 '../media/media.gyp:media_test_support',
1585 '../testing/gtest.gyp:gtest', 1595 '../testing/gtest.gyp:gtest',
1586 '../ui/base/ui_base.gyp:ui_base', 1596 '../ui/base/ui_base.gyp:ui_base',
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after
1981 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 1991 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
1982 }, 1992 },
1983 ], 1993 ],
1984 }], 1994 }],
1985 ], 1995 ],
1986 }, 1996 },
1987 ], 1997 ],
1988 }], 1998 }],
1989 ], 1999 ],
1990 } 2000 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698