OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//content/common/common.gni") | 7 import("//content/common/common.gni") |
8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
9 import("//mojo/public/tools/bindings/mojom.gni") | 9 import("//mojo/public/tools/bindings/mojom.gni") |
10 if (is_mac) { | 10 if (is_mac) { |
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
393 "gpu/media/vp9_picture.cc", | 393 "gpu/media/vp9_picture.cc", |
394 "gpu/media/vp9_picture.h", | 394 "gpu/media/vp9_picture.h", |
395 ] | 395 ] |
396 if (use_v4lplugin) { | 396 if (use_v4lplugin) { |
397 defines += [ "USE_LIBV4L2" ] | 397 defines += [ "USE_LIBV4L2" ] |
398 sources += get_target_outputs(":libv4l2_generate_stubs") | 398 sources += get_target_outputs(":libv4l2_generate_stubs") |
399 deps += [ ":libv4l2_generate_stubs" ] | 399 deps += [ ":libv4l2_generate_stubs" ] |
400 } | 400 } |
401 if (use_v4l2_codec) { | 401 if (use_v4l2_codec) { |
402 defines += [ "USE_V4L2_CODEC" ] | 402 defines += [ "USE_V4L2_CODEC" ] |
| 403 deps += [ "//third_party/libyuv" ] |
403 sources += [ | 404 sources += [ |
404 "gpu/media/generic_v4l2_device.cc", | 405 "gpu/media/generic_v4l2_device.cc", |
405 "gpu/media/generic_v4l2_device.h", | 406 "gpu/media/generic_v4l2_device.h", |
406 "gpu/media/v4l2_device.cc", | 407 "gpu/media/v4l2_device.cc", |
407 "gpu/media/v4l2_device.h", | 408 "gpu/media/v4l2_device.h", |
408 "gpu/media/v4l2_image_processor.cc", | 409 "gpu/media/v4l2_image_processor.cc", |
409 "gpu/media/v4l2_image_processor.h", | 410 "gpu/media/v4l2_image_processor.h", |
410 "gpu/media/v4l2_jpeg_decode_accelerator.cc", | 411 "gpu/media/v4l2_jpeg_decode_accelerator.cc", |
411 "gpu/media/v4l2_jpeg_decode_accelerator.h", | 412 "gpu/media/v4l2_jpeg_decode_accelerator.h", |
412 "gpu/media/v4l2_slice_video_decode_accelerator.cc", | 413 "gpu/media/v4l2_slice_video_decode_accelerator.cc", |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
546 import_dirs = [ "//mojo/services" ] | 547 import_dirs = [ "//mojo/services" ] |
547 | 548 |
548 deps = [ | 549 deps = [ |
549 "//components/mus/public/interfaces", | 550 "//components/mus/public/interfaces", |
550 "//content/public/common:mojo_bindings", | 551 "//content/public/common:mojo_bindings", |
551 "//mojo/application/public/interfaces", | 552 "//mojo/application/public/interfaces", |
552 "//skia/public/interfaces", | 553 "//skia/public/interfaces", |
553 "//ui/mojo/geometry:interfaces", | 554 "//ui/mojo/geometry:interfaces", |
554 ] | 555 ] |
555 } | 556 } |
OLD | NEW |