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

Side by Side Diff: content/content_tests.gypi

Issue 825843002: Add JPEG decoder for VAAPI JPEG decode acceleration (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mjpeg-vaapi-jpeg-parser
Patch Set: rebase+revise due to parser cl Created 5 years, 11 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 1544 matching lines...) Expand 10 before | Expand all | Expand 10 after
1555 '../build/linux/system.gyp:x11', # Used by rendering_helper.c c 1555 '../build/linux/system.gyp:x11', # Used by rendering_helper.c c
1556 '../ui/gfx/x/gfx_x11.gyp:gfx_x11', 1556 '../ui/gfx/x/gfx_x11.gyp:gfx_x11',
1557 ], 1557 ],
1558 }], 1558 }],
1559 ], 1559 ],
1560 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1560 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1561 'msvs_disabled_warnings': [ 4267, ], 1561 'msvs_disabled_warnings': [ 4267, ],
1562 }, 1562 },
1563 ] 1563 ]
1564 }], 1564 }],
1565 ['chromeos==1 and use_x11 == 1 and target_arch != "arm"', { 1565 ['chromeos==1 and use_x11 == 1 and target_arch != "arm"', {
wuchengli 2015/01/12 09:08:53 Please rebase (address the comments in a patchset
kcwu 2015/01/16 15:12:56 Done. I rebased anyway because some parts depend o
1566 'targets': [ 1566 'targets': [
1567 { 1567 {
1568 'target_name': 'vaapi_h264_decoder_unittest', 1568 'target_name': 'vaapi_h264_decoder_unittest',
1569 'type': '<(gtest_target_type)', 1569 'type': '<(gtest_target_type)',
1570 'dependencies': [ 1570 'dependencies': [
1571 'content.gyp:content_common', 1571 'content.gyp:content_common',
1572 '../base/base.gyp:base', 1572 '../base/base.gyp:base',
1573 '../build/linux/system.gyp:x11', 1573 '../build/linux/system.gyp:x11',
1574 '../media/media.gyp:media', 1574 '../media/media.gyp:media',
1575 '../testing/gtest.gyp:gtest', 1575 '../testing/gtest.gyp:gtest',
1576 '../third_party/libyuv/libyuv.gyp:libyuv', 1576 '../third_party/libyuv/libyuv.gyp:libyuv',
1577 '../ui/gfx/gfx.gyp:gfx_geometry', 1577 '../ui/gfx/gfx.gyp:gfx_geometry',
1578 ], 1578 ],
1579 'sources': [ 1579 'sources': [
1580 'common/gpu/media/vaapi_h264_decoder_unittest.cc', 1580 'common/gpu/media/vaapi_h264_decoder_unittest.cc',
1581 ], 1581 ],
1582 'include_dirs': [ 1582 'include_dirs': [
1583 '<(DEPTH)/third_party/libva', 1583 '<(DEPTH)/third_party/libva',
1584 ], 1584 ],
1585 }, 1585 },
1586 {
1587 'target_name': 'vaapi_jpeg_decoder_unittest',
1588 'type': '<(gtest_target_type)',
1589 'dependencies': [
1590 'content.gyp:content_common',
1591 '../base/base.gyp:base',
1592 '../build/linux/system.gyp:x11',
1593 '../media/media.gyp:media',
1594 '../testing/gtest.gyp:gtest',
1595 ],
1596 'sources': [
1597 'common/gpu/media/vaapi_jpeg_decoder.h',
1598 'common/gpu/media/vaapi_jpeg_decoder.cc',
1599 'common/gpu/media/vaapi_jpeg_decoder_unittest.cc',
1600 ],
1601 'include_dirs': [
1602 '<(DEPTH)/third_party/libva',
1603 ],
1604 }
1586 ] 1605 ]
1587 }], 1606 }],
1588 ['chromeos==1 and (target_arch == "arm" or use_x11 == 1)', { 1607 ['chromeos==1 and (target_arch == "arm" or use_x11 == 1)', {
1589 'targets': [ 1608 'targets': [
1590 { 1609 {
1591 'target_name': 'video_encode_accelerator_unittest', 1610 'target_name': 'video_encode_accelerator_unittest',
1592 'type': 'executable', 1611 'type': 'executable',
1593 'dependencies': [ 1612 'dependencies': [
1594 '../base/base.gyp:base', 1613 '../base/base.gyp:base',
1595 '../media/media.gyp:media', 1614 '../media/media.gyp:media',
(...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after
1994 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 2013 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
1995 }, 2014 },
1996 ], 2015 ],
1997 }], 2016 }],
1998 ], 2017 ],
1999 }, 2018 },
2000 ], 2019 ],
2001 }], 2020 }],
2002 ], 2021 ],
2003 } 2022 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698