| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//media/gpu/args.gni") | 7 import("//media/gpu/args.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 | 10 |
| (...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 sources += [ | 327 sources += [ |
| 328 "dxva_picture_buffer_win.cc", | 328 "dxva_picture_buffer_win.cc", |
| 329 "dxva_picture_buffer_win.h", | 329 "dxva_picture_buffer_win.h", |
| 330 "dxva_video_decode_accelerator_win.cc", | 330 "dxva_video_decode_accelerator_win.cc", |
| 331 "dxva_video_decode_accelerator_win.h", | 331 "dxva_video_decode_accelerator_win.h", |
| 332 ] | 332 ] |
| 333 configs += [ | 333 configs += [ |
| 334 "//build/config/compiler:no_size_t_to_int_warning", | 334 "//build/config/compiler:no_size_t_to_int_warning", |
| 335 "//third_party/khronos:khronos_headers", | 335 "//third_party/khronos:khronos_headers", |
| 336 ] | 336 ] |
| 337 public_deps += [ "//media/base/win" ] |
| 337 deps += [ "//third_party/angle:includes" ] | 338 deps += [ "//third_party/angle:includes" ] |
| 338 libs += [ | 339 libs += [ |
| 339 "d3d9.lib", | 340 "d3d9.lib", |
| 340 "d3d11.lib", | 341 "d3d11.lib", |
| 341 "dxva2.lib", | 342 "dxva2.lib", |
| 342 "strmiids.lib", | 343 "strmiids.lib", |
| 343 "mf.lib", | 344 "mf.lib", |
| 344 "mfplat.lib", | 345 "mfplat.lib", |
| 345 "mfuuid.lib", | 346 "mfuuid.lib", |
| 346 ] | 347 ] |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 447 "video_encode_accelerator_unittest.cc", | 448 "video_encode_accelerator_unittest.cc", |
| 448 ] | 449 ] |
| 449 if (use_x11) { | 450 if (use_x11) { |
| 450 deps += [ "//ui/gfx/x" ] | 451 deps += [ "//ui/gfx/x" ] |
| 451 } | 452 } |
| 452 if (use_ozone) { | 453 if (use_ozone) { |
| 453 deps += [ "//ui/ozone" ] | 454 deps += [ "//ui/ozone" ] |
| 454 } | 455 } |
| 455 } | 456 } |
| 456 } | 457 } |
| OLD | NEW |