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

Side by Side Diff: media/gpu/BUILD.gn

Issue 2068763002: Re-Reland: Make media/capture gn and gyps produce components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Disable warning 4267 in Win capture.gyp (probs. lost in the previous relanding). Rebase Created 4 years, 6 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 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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 } 324 }
325 325
326 if (is_win) { 326 if (is_win) {
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 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
334 "//build/config/compiler:no_size_t_to_int_warning", 335 "//build/config/compiler:no_size_t_to_int_warning",
335 "//third_party/khronos:khronos_headers", 336 "//third_party/khronos:khronos_headers",
336 ] 337 ]
338 public_deps += [ "//media/base/win" ]
337 deps += [ "//third_party/angle:includes" ] 339 deps += [ "//third_party/angle:includes" ]
338 libs += [ 340 libs += [
339 "d3d9.lib", 341 "d3d9.lib",
340 "d3d11.lib", 342 "d3d11.lib",
341 "dxva2.lib", 343 "dxva2.lib",
342 "strmiids.lib", 344 "strmiids.lib",
343 "mf.lib", 345 "mf.lib",
344 "mfplat.lib", 346 "mfplat.lib",
345 "mfuuid.lib", 347 "mfuuid.lib",
346 ] 348 ]
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
446 "video_encode_accelerator_unittest.cc", 448 "video_encode_accelerator_unittest.cc",
447 ] 449 ]
448 if (use_x11) { 450 if (use_x11) {
449 deps += [ "//ui/gfx/x" ] 451 deps += [ "//ui/gfx/x" ]
450 } 452 }
451 if (use_ozone) { 453 if (use_ozone) {
452 deps += [ "//ui/ozone" ] 454 deps += [ "//ui/ozone" ]
453 } 455 }
454 } 456 }
455 } 457 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698