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

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: Fix vaapi_h264_decoder_unittest Created 6 years 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 1501 matching lines...) Expand 10 before | Expand all | Expand 10 after
1512 'conditions': [ 1512 'conditions': [
1513 ['OS=="win" and component!="shared_library" and win_use_allocator_sh im==1', { 1513 ['OS=="win" and component!="shared_library" and win_use_allocator_sh im==1', {
1514 'dependencies': [ 1514 'dependencies': [
1515 '<(DEPTH)/base/allocator/allocator.gyp:allocator', 1515 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
1516 ], 1516 ],
1517 }], 1517 }],
1518 ], 1518 ],
1519 }, 1519 },
1520 ], 1520 ],
1521 }], 1521 }],
1522 ['(chromeos==1 or OS=="win" or OS=="android") and use_ozone==0', { 1522 ['chromeos==1 or OS=="win" or OS=="android"', {
1523 'targets': [ 1523 'targets': [
1524 { 1524 {
1525 'target_name': 'video_decode_accelerator_unittest', 1525 'target_name': 'video_decode_accelerator_unittest',
1526 'type': '<(gtest_target_type)', 1526 'type': '<(gtest_target_type)',
1527 'dependencies': [ 1527 'dependencies': [
1528 '../base/base.gyp:base', 1528 '../base/base.gyp:base',
1529 '../media/media.gyp:media', 1529 '../media/media.gyp:media',
1530 '../testing/gtest.gyp:gtest', 1530 '../testing/gtest.gyp:gtest',
1531 '../ui/base/ui_base.gyp:ui_base', 1531 '../ui/base/ui_base.gyp:ui_base',
1532 '../ui/gfx/gfx.gyp:gfx', 1532 '../ui/gfx/gfx.gyp:gfx',
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
1580 'include_dirs': [ 1580 'include_dirs': [
1581 '<(DEPTH)/third_party/libva', 1581 '<(DEPTH)/third_party/libva',
1582 ], 1582 ],
1583 }], 1583 }],
1584 ['use_x11==1', { 1584 ['use_x11==1', {
1585 'dependencies': [ 1585 'dependencies': [
1586 '../build/linux/system.gyp:x11', # Used by rendering_helper.c c 1586 '../build/linux/system.gyp:x11', # Used by rendering_helper.c c
1587 '../ui/gfx/x/gfx_x11.gyp:gfx_x11', 1587 '../ui/gfx/x/gfx_x11.gyp:gfx_x11',
1588 ], 1588 ],
1589 }], 1589 }],
1590 ['use_ozone==1 and chromeos==1', {
1591 'dependencies': [
1592 '../ui/display/display.gyp:display', # Used by rendering_helpe r.cc
1593 ],
1594 }],
1590 ], 1595 ],
1591 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1596 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1592 'msvs_disabled_warnings': [ 4267, ], 1597 'msvs_disabled_warnings': [ 4267, ],
1593 }, 1598 },
1594 ] 1599 ]
1595 }], 1600 }],
1596 ['chromeos==1 and use_x11 == 1 and target_arch != "arm"', { 1601 ['chromeos==1 and target_arch != "arm"', {
1597 'targets': [ 1602 'targets': [
1598 { 1603 {
1599 'target_name': 'vaapi_h264_decoder_unittest', 1604 'target_name': 'vaapi_h264_decoder_unittest',
1600 'type': '<(gtest_target_type)', 1605 'type': '<(gtest_target_type)',
1601 'dependencies': [ 1606 'dependencies': [
1602 'content.gyp:content_common', 1607 'content.gyp:content_common',
1603 '../base/base.gyp:base', 1608 '../base/base.gyp:base',
1604 '../build/linux/system.gyp:x11',
1605 '../media/media.gyp:media', 1609 '../media/media.gyp:media',
1606 '../testing/gtest.gyp:gtest', 1610 '../testing/gtest.gyp:gtest',
1607 '../third_party/libyuv/libyuv.gyp:libyuv', 1611 '../third_party/libyuv/libyuv.gyp:libyuv',
1608 '../ui/gfx/gfx.gyp:gfx_geometry', 1612 '../ui/gfx/gfx.gyp:gfx_geometry',
1609 ], 1613 ],
1610 'sources': [ 1614 'sources': [
1611 'common/gpu/media/vaapi_h264_decoder_unittest.cc', 1615 'common/gpu/media/vaapi_h264_decoder_unittest.cc',
1612 ], 1616 ],
1613 'include_dirs': [ 1617 'include_dirs': [
1614 '<(DEPTH)/third_party/libva', 1618 '<(DEPTH)/third_party/libva',
1615 ], 1619 ],
1620 'conditions': [
1621 ['use_x11==1', {
1622 'dependencies': [
1623 '../build/linux/system.gyp:x11',
1624 ]
1625 }, {
1626 'dependencies': [
1627 '../build/linux/system.gyp:libdrm',
1628 ]
1629 }],
1630 ],
1616 }, 1631 },
1617 ] 1632 ]
1618 }], 1633 }],
1619 ['chromeos==1 and (target_arch == "arm" or use_x11 == 1)', { 1634 ['chromeos==1', {
1620 'targets': [ 1635 'targets': [
1621 { 1636 {
1622 'target_name': 'video_encode_accelerator_unittest', 1637 'target_name': 'video_encode_accelerator_unittest',
1623 'type': 'executable', 1638 'type': 'executable',
1624 'dependencies': [ 1639 'dependencies': [
1625 '../base/base.gyp:base', 1640 '../base/base.gyp:base',
1626 '../media/media.gyp:media', 1641 '../media/media.gyp:media',
1627 '../media/media.gyp:media_test_support', 1642 '../media/media.gyp:media_test_support',
1628 '../testing/gtest.gyp:gtest', 1643 '../testing/gtest.gyp:gtest',
1629 '../ui/base/ui_base.gyp:ui_base', 1644 '../ui/base/ui_base.gyp:ui_base',
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after
2058 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 2073 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
2059 }, 2074 },
2060 ], 2075 ],
2061 }], 2076 }],
2062 ], 2077 ],
2063 }, 2078 },
2064 ], 2079 ],
2065 }], 2080 }],
2066 ], 2081 ],
2067 } 2082 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698