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

Side by Side Diff: content/content_tests.gypi

Issue 807853005: Refactor Vaapi video decoder/encoder in preparation of Freon support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove whitespace changes 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 1591 matching lines...) Expand 10 before | Expand all | Expand 10 after
1602 ] 1602 ]
1603 }], 1603 }],
1604 ['chromeos==1 and use_x11 == 1 and target_arch != "arm"', { 1604 ['chromeos==1 and use_x11 == 1 and target_arch != "arm"', {
1605 'targets': [ 1605 'targets': [
1606 { 1606 {
1607 'target_name': 'vaapi_h264_decoder_unittest', 1607 'target_name': 'vaapi_h264_decoder_unittest',
1608 'type': '<(gtest_target_type)', 1608 'type': '<(gtest_target_type)',
1609 'dependencies': [ 1609 'dependencies': [
1610 'content.gyp:content_common', 1610 'content.gyp:content_common',
1611 '../base/base.gyp:base', 1611 '../base/base.gyp:base',
1612 '../build/linux/system.gyp:x11',
1613 '../media/media.gyp:media', 1612 '../media/media.gyp:media',
1614 '../testing/gtest.gyp:gtest', 1613 '../testing/gtest.gyp:gtest',
1615 '../third_party/libyuv/libyuv.gyp:libyuv', 1614 '../third_party/libyuv/libyuv.gyp:libyuv',
1616 '../ui/gfx/gfx.gyp:gfx_geometry', 1615 '../ui/gfx/gfx.gyp:gfx_geometry',
1617 ], 1616 ],
1618 'sources': [ 1617 'sources': [
1619 'common/gpu/media/vaapi_h264_decoder_unittest.cc', 1618 'common/gpu/media/vaapi_h264_decoder_unittest.cc',
1620 ], 1619 ],
1621 'include_dirs': [ 1620 'include_dirs': [
1622 '<(DEPTH)/third_party/libva', 1621 '<(DEPTH)/third_party/libva',
1623 ], 1622 ],
1623 'conditions': [
1624 ['use_x11==1', {
piman 2014/12/17 18:57:06 This condition is already true in this block. Did
llandwerlin-old 2014/12/17 21:24:59 Thanks, removing this.
1625 'dependencies': [
1626 '../build/linux/system.gyp:x11',
1627 ]
1628 }],
1629 ],
1624 }, 1630 },
1625 ] 1631 ]
1626 }], 1632 }],
1627 ['chromeos==1 and (target_arch == "arm" or use_x11 == 1)', { 1633 ['chromeos==1 and (target_arch == "arm" or use_x11 == 1)', {
1628 'targets': [ 1634 'targets': [
1629 { 1635 {
1630 'target_name': 'video_encode_accelerator_unittest', 1636 'target_name': 'video_encode_accelerator_unittest',
1631 'type': 'executable', 1637 'type': 'executable',
1632 'dependencies': [ 1638 'dependencies': [
1633 '../base/base.gyp:base', 1639 '../base/base.gyp:base',
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
2066 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 2072 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
2067 }, 2073 },
2068 ], 2074 ],
2069 }], 2075 }],
2070 ], 2076 ],
2071 }, 2077 },
2072 ], 2078 ],
2073 }], 2079 }],
2074 ], 2080 ],
2075 } 2081 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698