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

Side by Side Diff: media/media.gyp

Issue 14199002: Send hardware video frames with mailboxes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: video-mailbox: virtualandroid Created 7 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 | « media/filters/gpu_video_decoder.cc ('k') | media/video/picture.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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 # Override to dynamically link the cras (ChromeOS audio) library. 8 # Override to dynamically link the cras (ChromeOS audio) library.
9 'use_cras%': 0, 9 'use_cras%': 0,
10 # Option e.g. for Linux distributions to link pulseaudio directly 10 # Option e.g. for Linux distributions to link pulseaudio directly
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
448 }, 448 },
449 'conditions': [ 449 'conditions': [
450 ['arm_neon==1', { 450 ['arm_neon==1', {
451 'defines': [ 451 'defines': [
452 'USE_NEON' 452 'USE_NEON'
453 ], 453 ],
454 }], 454 }],
455 ['OS!="ios"', { 455 ['OS!="ios"', {
456 'dependencies': [ 456 'dependencies': [
457 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', 457 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations',
458 '../gpu/gpu.gyp:command_buffer_common',
458 'shared_memory_support', 459 'shared_memory_support',
459 ], 460 ],
460 }], 461 }],
461 ['media_use_ffmpeg==1', { 462 ['media_use_ffmpeg==1', {
462 'dependencies': [ 463 'dependencies': [
463 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', 464 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
464 ], 465 ],
465 }, { # media_use_ffmpeg==0 466 }, { # media_use_ffmpeg==0
466 # Exclude the sources that depend on ffmpeg. 467 # Exclude the sources that depend on ffmpeg.
467 'sources!': [ 468 'sources!': [
(...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after
979 'webm/webm_webvtt_parser_unittest.cc', 980 'webm/webm_webvtt_parser_unittest.cc',
980 ], 981 ],
981 'conditions': [ 982 'conditions': [
982 ['arm_neon==1', { 983 ['arm_neon==1', {
983 'defines': [ 984 'defines': [
984 'USE_NEON' 985 'USE_NEON'
985 ], 986 ],
986 }], 987 }],
987 ['OS!="ios"', { 988 ['OS!="ios"', {
988 'dependencies': [ 989 'dependencies': [
990 '../gpu/gpu.gyp:command_buffer_common',
989 'shared_memory_support', 991 'shared_memory_support',
990 ], 992 ],
991 }], 993 }],
992 ['media_use_ffmpeg==1', { 994 ['media_use_ffmpeg==1', {
993 'dependencies': [ 995 'dependencies': [
994 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', 996 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
995 ], 997 ],
996 }], 998 }],
997 ['os_posix==1 and OS!="mac" and OS!="ios"', { 999 ['os_posix==1 and OS!="mac" and OS!="ios"', {
998 'conditions': [ 1000 'conditions': [
(...skipping 622 matching lines...) Expand 10 before | Expand all | Expand 10 after
1621 'sources': [ 1623 'sources': [
1622 'tools/media_bench/media_bench.cc', 1624 'tools/media_bench/media_bench.cc',
1623 ], 1625 ],
1624 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1626 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1625 'msvs_disabled_warnings': [ 4267, ], 1627 'msvs_disabled_warnings': [ 4267, ],
1626 }, 1628 },
1627 ], 1629 ],
1628 }], 1630 }],
1629 ], 1631 ],
1630 } 1632 }
OLDNEW
« no previous file with comments | « media/filters/gpu_video_decoder.cc ('k') | media/video/picture.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698