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

Side by Side Diff: content/content_tests.gypi

Issue 175223003: HW Video: Make media::VideoFrame handle the sync point of the compositor as well as webgl (Closed) Base URL: https://git.chromium.org/chromium/src.git@master
Patch Set: Make GpuVideoAcceleratorFactories::ReadPixels() receive mailbox, instead of texture Created 6 years, 9 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'test_support_content', 8 'target_name': 'test_support_content',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
(...skipping 1246 matching lines...) Expand 10 before | Expand all | Expand 10 after
1257 'include_dirs': [ 1257 'include_dirs': [
1258 '..', 1258 '..',
1259 ], 1259 ],
1260 'sources': [ 1260 'sources': [
1261 'test/webkit_unit_test_support.cc', 1261 'test/webkit_unit_test_support.cc',
1262 'test/webkit_unit_test_support.h', 1262 'test/webkit_unit_test_support.h',
1263 ], 1263 ],
1264 }, 1264 },
1265 ], 1265 ],
1266 }], 1266 }],
1267 ['chromeos==1 or OS=="win" or OS=="android"', { 1267 ['(chromeos==1 or (OS=="linux" and use_x11==1 and target_arch != "arm")) or OS=="win" or OS=="android"', {
1268 'targets': [ 1268 'targets': [
1269 { 1269 {
1270 'target_name': 'video_decode_accelerator_unittest', 1270 'target_name': 'video_decode_accelerator_unittest',
1271 'type': '<(gtest_target_type)', 1271 'type': '<(gtest_target_type)',
1272 'dependencies': [ 1272 'dependencies': [
1273 'content.gyp:content', 1273 'content.gyp:content',
1274 'test_support_content',
1274 '../base/base.gyp:base', 1275 '../base/base.gyp:base',
1275 '../testing/gtest.gyp:gtest', 1276 '../testing/gtest.gyp:gtest',
1276 '../media/media.gyp:media', 1277 '../media/media.gyp:media',
1277 '../ui/gl/gl.gyp:gl', 1278 '../ui/gl/gl.gyp:gl',
1278 '../ui/gfx/gfx.gyp:gfx', 1279 '../ui/gfx/gfx.gyp:gfx',
1279 '../ui/gfx/gfx.gyp:gfx_geometry', 1280 '../ui/gfx/gfx.gyp:gfx_geometry',
1280 '../ui/ui.gyp:ui', 1281 '../ui/ui.gyp:ui',
1281 ], 1282 ],
1282 'include_dirs': [ 1283 'include_dirs': [
1283 '<(DEPTH)/third_party/khronos', 1284 '<(DEPTH)/third_party/khronos',
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
1330 'dependencies': [ 1331 'dependencies': [
1331 '../build/linux/system.gyp:x11', # Used by rendering_helper.c c 1332 '../build/linux/system.gyp:x11', # Used by rendering_helper.c c
1332 ], 1333 ],
1333 }], 1334 }],
1334 ], 1335 ],
1335 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1336 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1336 'msvs_disabled_warnings': [ 4267, ], 1337 'msvs_disabled_warnings': [ 4267, ],
1337 }, 1338 },
1338 ] 1339 ]
1339 }], 1340 }],
1340 ['chromeos==1 and use_x11 == 1 and target_arch != "arm"', { 1341 ['(chromeos==1 or OS=="linux") and use_x11==1 and target_arch != "arm"', {
1341 'targets': [ 1342 'targets': [
1342 { 1343 {
1343 'target_name': 'vaapi_h264_decoder_unittest', 1344 'target_name': 'vaapi_h264_decoder_unittest',
1344 'type': '<(gtest_target_type)', 1345 'type': '<(gtest_target_type)',
1345 'dependencies': [ 1346 'dependencies': [
1346 'content.gyp:content_common', 1347 'content.gyp:content_common',
1348 'test_support_content',
1347 '../base/base.gyp:base', 1349 '../base/base.gyp:base',
1348 '../media/media.gyp:media', 1350 '../media/media.gyp:media',
1349 '../testing/gtest.gyp:gtest', 1351 '../testing/gtest.gyp:gtest',
1350 '../third_party/libyuv/libyuv.gyp:libyuv', 1352 '../third_party/libyuv/libyuv.gyp:libyuv',
1351 '../ui/gfx/gfx.gyp:gfx_geometry', 1353 '../ui/gfx/gfx.gyp:gfx_geometry',
1352 ], 1354 ],
1353 'sources': [ 1355 'sources': [
1354 'common/gpu/media/vaapi_h264_decoder_unittest.cc', 1356 'common/gpu/media/vaapi_h264_decoder_unittest.cc',
1355 ], 1357 ],
1356 'include_dirs': [ 1358 'include_dirs': [
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
1706 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 1708 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
1707 }, 1709 },
1708 ], 1710 ],
1709 }], 1711 }],
1710 ], 1712 ],
1711 }, 1713 },
1712 ], 1714 ],
1713 }], 1715 }],
1714 ], 1716 ],
1715 } 1717 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698