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

Side by Side Diff: content/content_common.gypi

Issue 922003002: Support H.264 video decoding on Windows 8+ using DX11 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added a CHECK to catch GetData failures Created 5 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
« no previous file with comments | « content/common/gpu/media/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 # 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 'dependencies': [ 6 'dependencies': [
7 '../base/base.gyp:base', 7 '../base/base.gyp:base',
8 '../components/tracing.gyp:tracing', 8 '../components/tracing.gyp:tracing',
9 '../gpu/command_buffer/command_buffer.gyp:gles2_utils', 9 '../gpu/command_buffer/command_buffer.gyp:gles2_utils',
10 '../net/net.gyp:net', 10 '../net/net.gyp:net',
(...skipping 931 matching lines...) Expand 10 before | Expand all | Expand 10 after
942 ] 942 ]
943 }], 943 }],
944 ['OS=="win"', { 944 ['OS=="win"', {
945 'dependencies': [ 945 'dependencies': [
946 '../media/media.gyp:media', 946 '../media/media.gyp:media',
947 '../ui/gl/gl.gyp:gl', 947 '../ui/gl/gl.gyp:gl',
948 ], 948 ],
949 'link_settings': { 949 'link_settings': {
950 'libraries': [ 950 'libraries': [
951 '-ld3d9.lib', 951 '-ld3d9.lib',
952 '-ld3d11.lib',
952 '-ldxva2.lib', 953 '-ldxva2.lib',
953 '-lstrmiids.lib', 954 '-lstrmiids.lib',
954 '-lmf.lib', 955 '-lmf.lib',
955 '-lmfplat.lib', 956 '-lmfplat.lib',
956 '-lmfuuid.lib', 957 '-lmfuuid.lib',
957 ], 958 ],
958 'msvs_settings': { 959 'msvs_settings': {
959 'VCLinkerTool': { 960 'VCLinkerTool': {
960 'DelayLoadDLLs': [ 961 'DelayLoadDLLs': [
961 'd3d9.dll', 962 'd3d9.dll',
963 'd3d11.dll',
962 'dxva2.dll', 964 'dxva2.dll',
963 'mf.dll', 965 'mf.dll',
964 'mfplat.dll', 966 'mfplat.dll',
965 ], 967 ],
966 }, 968 },
967 }, 969 },
968 }, 970 },
969 'sources': [ 971 'sources': [
970 'common/gpu/media/dxva_video_decode_accelerator.cc', 972 'common/gpu/media/dxva_video_decode_accelerator.cc',
971 'common/gpu/media/dxva_video_decode_accelerator.h', 973 'common/gpu/media/dxva_video_decode_accelerator.h',
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
1035 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc', 1037 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc',
1036 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc', 1038 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc',
1037 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h', 1039 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h',
1038 'common/gpu/gpu_memory_buffer_factory_ozone.cc', 1040 'common/gpu/gpu_memory_buffer_factory_ozone.cc',
1039 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.cc', 1041 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.cc',
1040 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.h', 1042 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.h',
1041 ], 1043 ],
1042 }], 1044 }],
1043 ], 1045 ],
1044 } 1046 }
OLDNEW
« no previous file with comments | « content/common/gpu/media/video_decode_accelerator_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698