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

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

Powered by Google App Engine
This is Rietveld 408576698