Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 464 }], | 464 }], |
| 465 ['OS == "win" or (toolkit_uses_gtk == 1 and selinux == 0)', { | 465 ['OS == "win" or (toolkit_uses_gtk == 1 and selinux == 0)', { |
| 466 'dependencies': [ | 466 'dependencies': [ |
| 467 '../sandbox/sandbox.gyp:sandbox', | 467 '../sandbox/sandbox.gyp:sandbox', |
| 468 ], | 468 ], |
| 469 }], | 469 }], |
| 470 ], | 470 ], |
| 471 }, | 471 }, |
| 472 ], | 472 ], |
| 473 'conditions': [ | 473 'conditions': [ |
| 474 ['target_arch=="arm" or OS=="win"', { | 474 ['target_arch=="arm" or OS=="win" or OS=="mac"', { |
| 475 'targets': [ | 475 'targets': [ |
| 476 { | 476 { |
| 477 'target_name': 'video_decode_accelerator_unittest', | |
|
Ami GONE FROM CHROMIUM
2012/05/17 21:44:47
Sorry, I was overly terse before.
The reason the n
sail
2012/05/23 23:02:29
Done.
| |
| 477 'conditions': [ | 478 'conditions': [ |
| 478 ['target_arch=="arm"', { | 479 ['target_arch=="arm"', { |
| 479 'target_name': 'omx_video_decode_accelerator_unittest', | |
| 480 'include_dirs': [ | 480 'include_dirs': [ |
| 481 '<(DEPTH)/third_party/openmax/il', | 481 '<(DEPTH)/third_party/openmax/il', |
| 482 ], | 482 ], |
| 483 }], | 483 }], |
| 484 ['OS=="mac"', { | |
| 485 'dependencies': [ | |
| 486 '../ui/gl/gl.gyp:gl', | |
| 487 '../ui/ui.gyp:ui', | |
| 488 ], | |
| 489 'sources!': [ | |
| 490 'common/gpu/media/rendering_helper_egl.cc', | |
| 491 ], | |
| 492 }], | |
| 484 ['OS=="win"', { | 493 ['OS=="win"', { |
| 485 'target_name': 'dxva_video_decode_accelerator_unittest', | |
| 486 'dependencies': [ | 494 'dependencies': [ |
| 487 '../third_party/angle/src/build_angle.gyp:libEGL', | 495 '../third_party/angle/src/build_angle.gyp:libEGL', |
| 488 '../third_party/angle/src/build_angle.gyp:libGLESv2', | 496 '../third_party/angle/src/build_angle.gyp:libGLESv2', |
| 489 '../media/media.gyp:media', | 497 '../media/media.gyp:media', |
| 490 '../ui/gl/gl.gyp:gl', | 498 '../ui/gl/gl.gyp:gl', |
| 491 '../ui/ui.gyp:ui', | 499 '../ui/ui.gyp:ui', |
| 492 ], | 500 ], |
| 493 'conditions': [ | 501 'conditions': [ |
| 494 ['win_use_allocator_shim==1', { | 502 ['win_use_allocator_shim==1', { |
| 495 'dependencies': [ | 503 'dependencies': [ |
| 496 '../base/allocator/allocator.gyp:allocator', | 504 '../base/allocator/allocator.gyp:allocator', |
| 497 ], | 505 ], |
| 498 }], | 506 }], |
| 499 ], | 507 ], |
| 500 }], | 508 }], |
| 501 ], | 509 ], |
| 502 'defines!': ['CONTENT_IMPLEMENTATION'], | 510 'defines!': ['CONTENT_IMPLEMENTATION'], |
| 503 'type': 'executable', | 511 'type': 'executable', |
| 504 'dependencies': [ | 512 'dependencies': [ |
| 505 '../base/base.gyp:base', | 513 '../base/base.gyp:base', |
| 506 'content', | 514 'content', |
| 507 '../testing/gtest.gyp:gtest', | 515 '../testing/gtest.gyp:gtest', |
| 508 ], | 516 ], |
| 509 'include_dirs': [ | 517 'include_dirs': [ |
| 510 '<(DEPTH)/third_party/angle/include', | 518 '<(DEPTH)/third_party/angle/include', |
| 511 ], | 519 ], |
| 512 'sources': [ | 520 'sources': [ |
| 521 'common/gpu/media/rendering_helper.h', | |
| 522 'common/gpu/media/rendering_helper_mac.mm', | |
| 523 'common/gpu/media/rendering_helper_egl.cc', | |
| 513 'common/gpu/media/video_decode_accelerator_unittest.cc', | 524 'common/gpu/media/video_decode_accelerator_unittest.cc', |
| 514 ], | 525 ], |
| 515 } | 526 } |
| 516 ], | 527 ], |
| 517 }], | 528 }], |
| 518 ['chromeos == 1', { | 529 ['chromeos == 1', { |
| 519 'targets': [ | 530 'targets': [ |
| 520 { | 531 { |
| 521 'target_name': 'h264_parser_unittest', | 532 'target_name': 'h264_parser_unittest', |
| 522 'type': 'executable', | 533 'type': 'executable', |
| 523 'dependencies': [ | 534 'dependencies': [ |
| 524 'content_common', | 535 'content_common', |
| 525 '../testing/gtest.gyp:gtest', | 536 '../testing/gtest.gyp:gtest', |
| 526 ], | 537 ], |
| 527 'sources': [ | 538 'sources': [ |
| 528 'common/gpu/media/h264_parser_unittest.cc', | 539 'common/gpu/media/h264_parser_unittest.cc', |
| 529 ], | 540 ], |
| 530 } | 541 } |
| 531 ], | 542 ], |
| 532 }], | 543 }], |
| 533 ], | 544 ], |
| 534 } | 545 } |
| OLD | NEW |