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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
392 "gpu/media/vp9_picture.cc", | 392 "gpu/media/vp9_picture.cc", |
393 "gpu/media/vp9_picture.h", | 393 "gpu/media/vp9_picture.h", |
394 ] | 394 ] |
395 if (use_v4lplugin) { | 395 if (use_v4lplugin) { |
396 defines += [ "USE_LIBV4L2" ] | 396 defines += [ "USE_LIBV4L2" ] |
397 sources += get_target_outputs(":libv4l2_generate_stubs") | 397 sources += get_target_outputs(":libv4l2_generate_stubs") |
398 deps += [ ":libv4l2_generate_stubs" ] | 398 deps += [ ":libv4l2_generate_stubs" ] |
399 } | 399 } |
400 if (use_v4l2_codec) { | 400 if (use_v4l2_codec) { |
401 defines += [ "USE_V4L2_CODEC" ] | 401 defines += [ "USE_V4L2_CODEC" ] |
| 402 deps += [ "//third_party/libyuv" ] |
402 sources += [ | 403 sources += [ |
403 "gpu/media/generic_v4l2_device.cc", | 404 "gpu/media/generic_v4l2_device.cc", |
404 "gpu/media/generic_v4l2_device.h", | 405 "gpu/media/generic_v4l2_device.h", |
405 "gpu/media/v4l2_device.cc", | 406 "gpu/media/v4l2_device.cc", |
406 "gpu/media/v4l2_device.h", | 407 "gpu/media/v4l2_device.h", |
407 "gpu/media/v4l2_image_processor.cc", | 408 "gpu/media/v4l2_image_processor.cc", |
408 "gpu/media/v4l2_image_processor.h", | 409 "gpu/media/v4l2_image_processor.h", |
409 "gpu/media/v4l2_jpeg_decode_accelerator.cc", | 410 "gpu/media/v4l2_jpeg_decode_accelerator.cc", |
410 "gpu/media/v4l2_jpeg_decode_accelerator.h", | 411 "gpu/media/v4l2_jpeg_decode_accelerator.h", |
411 "gpu/media/v4l2_slice_video_decode_accelerator.cc", | 412 "gpu/media/v4l2_slice_video_decode_accelerator.cc", |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
544 | 545 |
545 import_dirs = [ "//mojo/services" ] | 546 import_dirs = [ "//mojo/services" ] |
546 | 547 |
547 deps = [ | 548 deps = [ |
548 "//content/public/common:mojo_bindings", | 549 "//content/public/common:mojo_bindings", |
549 "//mojo/application/public/interfaces", | 550 "//mojo/application/public/interfaces", |
550 "//skia/public/interfaces", | 551 "//skia/public/interfaces", |
551 "//ui/mojo/geometry:interfaces", | 552 "//ui/mojo/geometry:interfaces", |
552 ] | 553 ] |
553 } | 554 } |
OLD | NEW |