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

Side by Side Diff: content/content_tests.gypi

Issue 8510039: Initial implementation of the DXVA 2.0 H.264 hardware decoder for pepper for Windows. The decodin... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'defines!': ['CONTENT_IMPLEMENTATION'], 10 'defines!': ['CONTENT_IMPLEMENTATION'],
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 '../sandbox/sandbox.gyp:sandbox', 397 '../sandbox/sandbox.gyp:sandbox',
398 ], 398 ],
399 }], 399 }],
400 ], 400 ],
401 }, 401 },
402 ], 402 ],
403 'conditions': [ 403 'conditions': [
404 ['target_arch=="arm"', { 404 ['target_arch=="arm"', {
405 'targets': [ 405 'targets': [
406 { 406 {
407 'target_name': 'omx_video_decode_accelerator_unittest', 407 'target_name': 'omx_video_decode_accelerator_unittest',
Ami GONE FROM CHROMIUM 2011/12/16 07:38:54 Do you have a tegra2-based crosbook to test that y
ananta 2011/12/17 00:40:25 Unfortunately no. I will check around and see
408 'defines!': ['CONTENT_IMPLEMENTATION'], 408 'defines!': ['CONTENT_IMPLEMENTATION'],
409 'type': 'executable', 409 'type': 'executable',
410 'dependencies': [ 410 'dependencies': [
411 '../base/base.gyp:base', 411 '../base/base.gyp:base',
412 'content', 412 'content',
413 '../testing/gtest.gyp:gtest', 413 '../testing/gtest.gyp:gtest',
414 ], 414 ],
415 'include_dirs': [ 415 'include_dirs': [
416 '<(DEPTH)/third_party/angle/include', 416 '<(DEPTH)/third_party/angle/include',
417 '<(DEPTH)/third_party/openmax/il', 417 '<(DEPTH)/third_party/openmax/il',
418 ], 418 ],
419 'sources': [ 419 'sources': [
420 'common/gpu/media/omx_video_decode_accelerator_unittest.cc', 420 'common/gpu/media/video_decode_accelerator_unittest.cc',
421 ],
422 }
423 ],
424 },
425 ],
426 ['OS=="win"', {
Ami GONE FROM CHROMIUM 2011/12/16 07:38:54 Why duplicate the above target? De-dup (with condi
ananta 2011/12/17 00:40:25 Done.
427
428 'targets': [
429 {
430 'target_name': 'video_decode_accelerator_unittest',
431 'defines!': ['CONTENT_IMPLEMENTATION'],
432 'type': 'executable',
433 'dependencies': [
434 '../base/allocator/allocator.gyp:allocator',
435 '../base/base.gyp:base',
436 'content',
437 '../testing/gtest.gyp:gtest',
438 ],
439 'include_dirs': [
440 '<(DEPTH)/third_party/angle/include',
441 ],
442 'link_settings': {
443 'libraries': [
444 '-lmf.lib',
445 '-lmfuuid.lib',
446 ],
447 },
448 'sources': [
449 'common/gpu/media/video_decode_accelerator_unittest.cc',
421 ], 450 ],
422 } 451 }
423 ], 452 ],
424 }, 453 },
425 ], 454 ],
426 ], 455 ],
427 } 456 }
OLDNEW
« content/common/gpu/media/video_decode_accelerator_unittest.cc ('K') | « content/content_common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698