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

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: Experimental support for Windows 7 DX11 Created 5 years, 10 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
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',
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
1035 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc', 1036 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc',
1036 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc', 1037 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc',
1037 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h', 1038 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h',
1038 'common/gpu/gpu_memory_buffer_factory_ozone.cc', 1039 'common/gpu/gpu_memory_buffer_factory_ozone.cc',
1039 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.cc', 1040 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.cc',
1040 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.h', 1041 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.h',
1041 ], 1042 ],
1042 }], 1043 }],
1043 ], 1044 ],
1044 } 1045 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698