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

Side by Side Diff: content/content_tests.gypi

Issue 9814001: Add VAVDA, the VAAPI Video Decode Accelerator for Intel CPUs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 472 matching lines...) Expand 10 before | Expand all | Expand 10 after
483 'type': 'executable', 483 'type': 'executable',
484 'dependencies': [ 484 'dependencies': [
485 '../base/base.gyp:base', 485 '../base/base.gyp:base',
486 'content', 486 'content',
487 '../testing/gtest.gyp:gtest', 487 '../testing/gtest.gyp:gtest',
488 ], 488 ],
489 'include_dirs': [ 489 'include_dirs': [
490 '<(DEPTH)/third_party/angle/include', 490 '<(DEPTH)/third_party/angle/include',
491 ], 491 ],
492 'sources': [ 492 'sources': [
493 'common/gpu/media/video_decode_accelerator_unittest.cc', 493 'common/gpu/media/video_decode_accelerator_unittest.cc',
Ami GONE FROM CHROMIUM 2012/03/21 13:16:24 Were you able to make this test work w/ VAVDA? (IW
Pawel Osciak 2012/03/21 18:40:35 It requires adding GLX support and is not trivial.
Ami GONE FROM CHROMIUM 2012/03/22 17:01:36 TODO unless you plan to do it in this CL.
494 ], 494 ],
495 } 495 }
496 ], 496 ],
497 }, 497 }],
498 ], 498 ['chromeos == 1', {
Ami GONE FROM CHROMIUM 2012/03/21 13:16:24 Not part of this CL
499 'targets': [
500 {
501 'target_name': 'h264_parser_unittest',
502 'type': 'executable',
503 'dependencies': [
504 '../base/base.gyp:base',
505 '../testing/gtest.gyp:gtest',
506 ],
507 'sources': [
508 'common/gpu/media/h264_parser.cc',
509 'common/gpu/media/h264_parser.h',
510 'common/gpu/media/h264_parser_unittest.cc',
511 ],
512 }
513 ],
514 }],
499 ], 515 ],
500 } 516 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698