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