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

Side by Side Diff: media/media_gpu.gypi

Issue 2178603002: Rename media::GpuVideoDecodeAcceleratorFactoryImpl to media::GpuVideoDecodeAcceleratorFactory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@explicit_gpu_preferences
Patch Set: rebase Created 4 years, 4 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
« no previous file with comments | « media/gpu/video_decode_accelerator_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 'use_v4lplugin%': 0, 3 'use_v4lplugin%': 0,
4 'use_v4l2_codec%': 0, 4 'use_v4l2_codec%': 0,
5 }, 5 },
6 'defines': [ 6 'defines': [
7 'MEDIA_GPU_IMPLEMENTATION' 7 'MEDIA_GPU_IMPLEMENTATION'
8 ], 8 ],
9 'dependencies': [ 9 'dependencies': [
10 '../base/base.gyp:base', 10 '../base/base.gyp:base',
11 '../gpu/gpu.gyp:gpu', 11 '../gpu/gpu.gyp:gpu',
12 '../media/media.gyp:media', 12 '../media/media.gyp:media',
13 '../ui/display/display.gyp:display_types', 13 '../ui/display/display.gyp:display_types',
14 '../ui/gfx/gfx.gyp:gfx', 14 '../ui/gfx/gfx.gyp:gfx',
15 '../ui/gfx/gfx.gyp:gfx_geometry', 15 '../ui/gfx/gfx.gyp:gfx_geometry',
16 '../ui/gl/gl.gyp:gl', 16 '../ui/gl/gl.gyp:gl',
17 '../ui/gl/init/gl_init.gyp:gl_init', 17 '../ui/gl/init/gl_init.gyp:gl_init',
18 '../ui/platform_window/platform_window.gyp:platform_window', 18 '../ui/platform_window/platform_window.gyp:platform_window',
19 ], 19 ],
20 'sources': [ 20 'sources': [
21 'gpu/fake_video_decode_accelerator.cc', 21 'gpu/fake_video_decode_accelerator.cc',
22 'gpu/fake_video_decode_accelerator.h', 22 'gpu/fake_video_decode_accelerator.h',
23 'gpu/gpu_video_accelerator_util.cc', 23 'gpu/gpu_video_accelerator_util.cc',
24 'gpu/gpu_video_accelerator_util.h', 24 'gpu/gpu_video_accelerator_util.h',
25 'gpu/gpu_video_decode_accelerator_factory_impl.cc', 25 'gpu/gpu_video_decode_accelerator_factory.cc',
26 'gpu/gpu_video_decode_accelerator_factory_impl.h', 26 'gpu/gpu_video_decode_accelerator_factory.h',
27 'gpu/gpu_video_decode_accelerator_helpers.h', 27 'gpu/gpu_video_decode_accelerator_helpers.h',
28 'gpu/shared_memory_region.cc', 28 'gpu/shared_memory_region.cc',
29 'gpu/shared_memory_region.h', 29 'gpu/shared_memory_region.h',
30 ], 30 ],
31 'include_dirs': [ 31 'include_dirs': [
32 '..', 32 '..',
33 ], 33 ],
34 'conditions': [ 34 'conditions': [
35 ['OS=="mac"', { 35 ['OS=="mac"', {
36 'dependencies': [ 36 'dependencies': [
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 'gpu/android_deferred_rendering_backing_strategy.cc', 106 'gpu/android_deferred_rendering_backing_strategy.cc',
107 'gpu/android_deferred_rendering_backing_strategy.h', 107 'gpu/android_deferred_rendering_backing_strategy.h',
108 'gpu/android_video_decode_accelerator.cc', 108 'gpu/android_video_decode_accelerator.cc',
109 'gpu/android_video_decode_accelerator.h', 109 'gpu/android_video_decode_accelerator.h',
110 'gpu/avda_codec_image.cc', 110 'gpu/avda_codec_image.cc',
111 'gpu/avda_codec_image.h', 111 'gpu/avda_codec_image.h',
112 'gpu/avda_return_on_failure.h', 112 'gpu/avda_return_on_failure.h',
113 'gpu/avda_shared_state.cc', 113 'gpu/avda_shared_state.cc',
114 'gpu/avda_shared_state.h', 114 'gpu/avda_shared_state.h',
115 'gpu/avda_state_provider.h', 115 'gpu/avda_state_provider.h',
116 'gpu/avda_surface_tracker.cc',
116 'gpu/avda_surface_tracker.h', 117 'gpu/avda_surface_tracker.h',
117 'gpu/avda_surface_tracker.cc',
118 ], 118 ],
119 }], 119 }],
120 ['OS=="android" and enable_webrtc==1', { 120 ['OS=="android" and enable_webrtc==1', {
121 'dependencies': [ 121 'dependencies': [
122 '../third_party/libyuv/libyuv.gyp:libyuv', 122 '../third_party/libyuv/libyuv.gyp:libyuv',
123 ], 123 ],
124 'sources': [ 124 'sources': [
125 'gpu/android_video_encode_accelerator.cc', 125 'gpu/android_video_encode_accelerator.cc',
126 'gpu/android_video_encode_accelerator.h', 126 'gpu/android_video_encode_accelerator.h',
127 ], 127 ],
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
370 'msvs_settings': { 370 'msvs_settings': {
371 'VCCLCompilerTool': { 371 'VCCLCompilerTool': {
372 'AdditionalOptions': [ 372 'AdditionalOptions': [
373 '/wd4267', # Conversion from 'size_t' to 'type', possible loss of da ta 373 '/wd4267', # Conversion from 'size_t' to 'type', possible loss of da ta
374 ], 374 ],
375 }, 375 },
376 }, 376 },
377 }], 377 }],
378 ], 378 ],
379 } 379 }
OLDNEW
« no previous file with comments | « media/gpu/video_decode_accelerator_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698