OLD | NEW |
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', |
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 ], | 318 ], |
319 'process_outputs_as_sources': 1, | 319 'process_outputs_as_sources': 1, |
320 'message': 'Generating libva stubs for dynamic loading', | 320 'message': 'Generating libva stubs for dynamic loading', |
321 }, | 321 }, |
322 ] | 322 ] |
323 }], | 323 }], |
324 ['OS=="win"', { | 324 ['OS=="win"', { |
325 'dependencies': [ | 325 'dependencies': [ |
326 '../media/media.gyp:media', | 326 '../media/media.gyp:media', |
327 '../media/media.gyp:mf_initializer', | 327 '../media/media.gyp:mf_initializer', |
| 328 '../third_party/libyuv/libyuv.gyp:libyuv', |
328 '../ui/gl/gl.gyp:gl', | 329 '../ui/gl/gl.gyp:gl', |
329 '../ui/gl/init/gl_init.gyp:gl_init', | 330 '../ui/gl/init/gl_init.gyp:gl_init', |
330 ], | 331 ], |
331 'link_settings': { | 332 'link_settings': { |
332 'libraries': [ | 333 'libraries': [ |
333 '-ld3d9.lib', | 334 '-ld3d9.lib', |
334 '-ld3d11.lib', | 335 '-ld3d11.lib', |
335 '-ldxva2.lib', | 336 '-ldxva2.lib', |
336 '-lstrmiids.lib', | 337 '-lstrmiids.lib', |
337 '-lmf.lib', | 338 '-lmf.lib', |
(...skipping 10 matching lines...) Expand all Loading... |
348 'mfplat.dll', | 349 'mfplat.dll', |
349 ], | 350 ], |
350 }, | 351 }, |
351 }, | 352 }, |
352 }, | 353 }, |
353 'sources': [ | 354 'sources': [ |
354 'gpu/dxva_picture_buffer_win.cc', | 355 'gpu/dxva_picture_buffer_win.cc', |
355 'gpu/dxva_picture_buffer_win.h', | 356 'gpu/dxva_picture_buffer_win.h', |
356 'gpu/dxva_video_decode_accelerator_win.cc', | 357 'gpu/dxva_video_decode_accelerator_win.cc', |
357 'gpu/dxva_video_decode_accelerator_win.h', | 358 'gpu/dxva_video_decode_accelerator_win.h', |
| 359 'gpu/media_foundation_video_encode_accelerator_win.cc', |
| 360 'gpu/media_foundation_video_encode_accelerator_win.h', |
358 ], | 361 ], |
359 'include_dirs': [ | 362 'include_dirs': [ |
360 '<(DEPTH)/third_party/khronos', | 363 '<(DEPTH)/third_party/khronos', |
361 ], | 364 ], |
362 }], | 365 }], |
363 ['OS == "win" and target_arch == "x64"', { | 366 ['OS == "win" and target_arch == "x64"', { |
364 'msvs_settings': { | 367 'msvs_settings': { |
365 'VCCLCompilerTool': { | 368 'VCCLCompilerTool': { |
366 'AdditionalOptions': [ | 369 'AdditionalOptions': [ |
367 '/wd4267', # Conversion from 'size_t' to 'type', possible loss of da
ta | 370 '/wd4267', # Conversion from 'size_t' to 'type', possible loss of da
ta |
368 ], | 371 ], |
369 }, | 372 }, |
370 }, | 373 }, |
371 }], | 374 }], |
372 ], | 375 ], |
373 } | 376 } |
OLD | NEW |