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

Side by Side Diff: content/content_tests.gypi

Issue 10388108: Implement media::VideoDecodeAccelerator on Mac (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix cros build Created 8 years, 6 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
« no previous file with comments | « content/content_common.gypi ('k') | ui/gfx/video_decode_acceleration_support_mac.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 475 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 }], 486 }],
487 ['OS == "win" or (toolkit_uses_gtk == 1 and selinux == 0)', { 487 ['OS == "win" or (toolkit_uses_gtk == 1 and selinux == 0)', {
488 'dependencies': [ 488 'dependencies': [
489 '../sandbox/sandbox.gyp:sandbox', 489 '../sandbox/sandbox.gyp:sandbox',
490 ], 490 ],
491 }], 491 }],
492 ], 492 ],
493 }, 493 },
494 ], 494 ],
495 'conditions': [ 495 'conditions': [
496 ['target_arch=="arm" or OS=="win"', { 496 ['target_arch=="arm" or OS=="win" or OS=="mac"', {
497 'targets': [ 497 'targets': [
498 { 498 {
499 'conditions': [ 499 'conditions': [
500 ['target_arch=="arm"', { 500 ['target_arch=="arm"', {
501 'target_name': 'omx_video_decode_accelerator_unittest', 501 'target_name': 'omx_video_decode_accelerator_unittest',
502 'include_dirs': [ 502 'include_dirs': [
503 '<(DEPTH)/third_party/openmax/il', 503 '<(DEPTH)/third_party/openmax/il',
504 ], 504 ],
505 }], 505 }],
506 ['OS=="mac"', {
507 'target_name': 'video_decode_accelerator_unittest',
508 'dependencies': [
509 '../ui/gl/gl.gyp:gl',
510 '../ui/ui.gyp:ui',
511 ],
512 'sources!': [
513 'common/gpu/media/rendering_helper_egl.cc',
514 ],
515 }],
506 ['OS=="win"', { 516 ['OS=="win"', {
507 'target_name': 'dxva_video_decode_accelerator_unittest', 517 'target_name': 'dxva_video_decode_accelerator_unittest',
508 'dependencies': [ 518 'dependencies': [
509 '../third_party/angle/src/build_angle.gyp:libEGL', 519 '../third_party/angle/src/build_angle.gyp:libEGL',
510 '../third_party/angle/src/build_angle.gyp:libGLESv2', 520 '../third_party/angle/src/build_angle.gyp:libGLESv2',
511 '../ui/gl/gl.gyp:gl', 521 '../ui/gl/gl.gyp:gl',
512 ], 522 ],
513 'conditions': [ 523 'conditions': [
514 ['win_use_allocator_shim==1', { 524 ['win_use_allocator_shim==1', {
515 'dependencies': [ 525 'dependencies': [
516 '../base/allocator/allocator.gyp:allocator', 526 '../base/allocator/allocator.gyp:allocator',
517 ], 527 ],
518 }], 528 }],
519 ], 529 ],
520 }], 530 }],
521 ], 531 ],
522 'defines!': ['CONTENT_IMPLEMENTATION'], 532 'defines!': ['CONTENT_IMPLEMENTATION'],
523 'type': 'executable', 533 'type': 'executable',
524 'dependencies': [ 534 'dependencies': [
525 '../base/base.gyp:base', 535 '../base/base.gyp:base',
526 'content', 536 'content',
527 '../testing/gtest.gyp:gtest', 537 '../testing/gtest.gyp:gtest',
528 '../media/media.gyp:media', 538 '../media/media.gyp:media',
529 '../ui/ui.gyp:ui', 539 '../ui/ui.gyp:ui',
530 ], 540 ],
531 'include_dirs': [ 541 'include_dirs': [
532 '<(DEPTH)/third_party/angle/include', 542 '<(DEPTH)/third_party/angle/include',
533 ], 543 ],
534 'sources': [ 544 'sources': [
545 'common/gpu/media/rendering_helper.h',
546 'common/gpu/media/rendering_helper_mac.mm',
547 'common/gpu/media/rendering_helper_egl.cc',
535 'common/gpu/media/video_decode_accelerator_unittest.cc', 548 'common/gpu/media/video_decode_accelerator_unittest.cc',
536 ], 549 ],
537 } 550 }
538 ], 551 ],
539 }], 552 }],
540 ['chromeos == 1', { 553 ['chromeos == 1', {
541 'targets': [ 554 'targets': [
542 { 555 {
543 'target_name': 'h264_parser_unittest', 556 'target_name': 'h264_parser_unittest',
544 'type': 'executable', 557 'type': 'executable',
(...skipping 27 matching lines...) Expand all
572 '<(PRODUCT_DIR)/lib.java/chromium_base.jar', 585 '<(PRODUCT_DIR)/lib.java/chromium_base.jar',
573 '<(PRODUCT_DIR)/lib.java/chromium_content.jar', 586 '<(PRODUCT_DIR)/lib.java/chromium_content.jar',
574 ], 587 ],
575 }, 588 },
576 'includes': [ '../build/apk_test.gypi' ], 589 'includes': [ '../build/apk_test.gypi' ],
577 }, 590 },
578 ], 591 ],
579 }], 592 }],
580 ], 593 ],
581 } 594 }
OLDNEW
« no previous file with comments | « content/content_common.gypi ('k') | ui/gfx/video_decode_acceleration_support_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698