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 '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 1721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1732 }], | 1732 }], |
1733 ['OS=="win"', { | 1733 ['OS=="win"', { |
1734 'targets': [ | 1734 'targets': [ |
1735 { | 1735 { |
1736 # GN version: //media/base/win | 1736 # GN version: //media/base/win |
1737 'target_name': 'mf_initializer', | 1737 'target_name': 'mf_initializer', |
1738 'type': '<(component)', | 1738 'type': '<(component)', |
1739 'include_dirs': [ '..', ], | 1739 'include_dirs': [ '..', ], |
1740 'defines': [ 'MF_INITIALIZER_IMPLEMENTATION', ], | 1740 'defines': [ 'MF_INITIALIZER_IMPLEMENTATION', ], |
1741 'sources': [ | 1741 'sources': [ |
| 1742 'base/win/mf_helpers.cc', |
| 1743 'base/win/mf_helpers.h', |
1742 'base/win/mf_initializer_export.h', | 1744 'base/win/mf_initializer_export.h', |
1743 'base/win/mf_initializer.cc', | 1745 'base/win/mf_initializer.cc', |
1744 'base/win/mf_initializer.h', | 1746 'base/win/mf_initializer.h', |
1745 ], | 1747 ], |
1746 'dependencies': [ | 1748 'dependencies': [ |
1747 '../base/base.gyp:base', | 1749 '../base/base.gyp:base', |
1748 ], | 1750 ], |
1749 'link_settings': { | 1751 'link_settings': { |
1750 'libraries': [ | 1752 'libraries': [ |
1751 '-ldxguid.lib', | 1753 '-ldxguid.lib', |
(...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2125 'sources': [ | 2127 'sources': [ |
2126 'gpu/jpeg_decode_accelerator_unittest.cc', | 2128 'gpu/jpeg_decode_accelerator_unittest.cc', |
2127 ], | 2129 ], |
2128 'include_dirs': [ | 2130 'include_dirs': [ |
2129 '<(DEPTH)/third_party/libva', | 2131 '<(DEPTH)/third_party/libva', |
2130 '<(DEPTH)/third_party/libyuv', | 2132 '<(DEPTH)/third_party/libyuv', |
2131 ], | 2133 ], |
2132 } | 2134 } |
2133 ] | 2135 ] |
2134 }], | 2136 }], |
2135 ['chromeos==1 or OS=="mac"', { | 2137 ['chromeos==1 or OS=="mac" or OS=="win"', { |
2136 'targets': [ | 2138 'targets': [ |
2137 { | 2139 { |
2138 'target_name': 'video_encode_accelerator_unittest', | 2140 'target_name': 'video_encode_accelerator_unittest', |
2139 'type': 'executable', | 2141 'type': 'executable', |
2140 'dependencies': [ | 2142 'dependencies': [ |
2141 '../base/base.gyp:base', | 2143 '../base/base.gyp:base', |
2142 '../media/media.gyp:media', | 2144 '../media/media.gyp:media', |
2143 '../media/media.gyp:media_gpu', | 2145 '../media/media.gyp:media_gpu', |
2144 '../media/media.gyp:media_test_support', | 2146 '../media/media.gyp:media_test_support', |
2145 '../testing/gtest.gyp:gtest', | 2147 '../testing/gtest.gyp:gtest', |
(...skipping 11 matching lines...) Expand all Loading... |
2157 'include_dirs': [ | 2159 'include_dirs': [ |
2158 '<(DEPTH)/third_party/libva', | 2160 '<(DEPTH)/third_party/libva', |
2159 '<(DEPTH)/third_party/libyuv', | 2161 '<(DEPTH)/third_party/libyuv', |
2160 ], | 2162 ], |
2161 'conditions': [ | 2163 'conditions': [ |
2162 ['OS=="mac"', { | 2164 ['OS=="mac"', { |
2163 'dependencies': [ | 2165 'dependencies': [ |
2164 '../third_party/webrtc/common_video/common_video.gyp:common_vide
o', | 2166 '../third_party/webrtc/common_video/common_video.gyp:common_vide
o', |
2165 ], | 2167 ], |
2166 }], | 2168 }], |
| 2169 ['OS=="win"', { |
| 2170 'dependencies': [ |
| 2171 '../media/media.gyp:mf_initializer', |
| 2172 ], |
| 2173 }], |
2167 ['use_x11==1', { | 2174 ['use_x11==1', { |
2168 'dependencies': [ | 2175 'dependencies': [ |
2169 '../ui/gfx/x/gfx_x11.gyp:gfx_x11', | 2176 '../ui/gfx/x/gfx_x11.gyp:gfx_x11', |
2170 ], | 2177 ], |
2171 }], | 2178 }], |
2172 ['use_ozone==1', { | 2179 ['use_ozone==1', { |
2173 'dependencies': [ | 2180 'dependencies': [ |
2174 '../ui/ozone/ozone.gyp:ozone', | 2181 '../ui/ozone/ozone.gyp:ozone', |
2175 ], | 2182 ], |
2176 }], | 2183 }], |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2299 'dependencies': [ | 2306 'dependencies': [ |
2300 '../build/linux/system.gyp:libdrm', | 2307 '../build/linux/system.gyp:libdrm', |
2301 ] | 2308 ] |
2302 }], | 2309 }], |
2303 ], | 2310 ], |
2304 } | 2311 } |
2305 ] | 2312 ] |
2306 }], | 2313 }], |
2307 ], | 2314 ], |
2308 } | 2315 } |
OLD | NEW |