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 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
387 "gpu/media/h264_dpb.h", | 387 "gpu/media/h264_dpb.h", |
388 "gpu/media/vp8_decoder.cc", | 388 "gpu/media/vp8_decoder.cc", |
389 "gpu/media/vp8_decoder.h", | 389 "gpu/media/vp8_decoder.h", |
390 "gpu/media/vp8_picture.cc", | 390 "gpu/media/vp8_picture.cc", |
391 "gpu/media/vp8_picture.h", | 391 "gpu/media/vp8_picture.h", |
392 "gpu/media/vp9_decoder.cc", | 392 "gpu/media/vp9_decoder.cc", |
393 "gpu/media/vp9_decoder.h", | 393 "gpu/media/vp9_decoder.h", |
394 "gpu/media/vp9_picture.cc", | 394 "gpu/media/vp9_picture.cc", |
395 "gpu/media/vp9_picture.h", | 395 "gpu/media/vp9_picture.h", |
396 ] | 396 ] |
397 deps += [ "//components/arc" ] | 397 deps += [ "//components/arc:arc_bindings" ] |
398 if (use_v4lplugin) { | 398 if (use_v4lplugin) { |
399 defines += [ "USE_LIBV4L2" ] | 399 defines += [ "USE_LIBV4L2" ] |
400 sources += get_target_outputs(":libv4l2_generate_stubs") | 400 sources += get_target_outputs(":libv4l2_generate_stubs") |
401 deps += [ ":libv4l2_generate_stubs" ] | 401 deps += [ ":libv4l2_generate_stubs" ] |
402 } | 402 } |
403 if (use_v4l2_codec) { | 403 if (use_v4l2_codec) { |
404 defines += [ "USE_V4L2_CODEC" ] | 404 defines += [ "USE_V4L2_CODEC" ] |
405 deps += [ "//third_party/libyuv" ] | 405 deps += [ "//third_party/libyuv" ] |
406 sources += [ | 406 sources += [ |
407 "gpu/media/generic_v4l2_device.cc", | 407 "gpu/media/generic_v4l2_device.cc", |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
549 import_dirs = [ "//mojo/services" ] | 549 import_dirs = [ "//mojo/services" ] |
550 | 550 |
551 deps = [ | 551 deps = [ |
552 "//components/mus/public/interfaces", | 552 "//components/mus/public/interfaces", |
553 "//content/public/common:mojo_bindings", | 553 "//content/public/common:mojo_bindings", |
554 "//mojo/shell/public/interfaces", | 554 "//mojo/shell/public/interfaces", |
555 "//skia/public/interfaces", | 555 "//skia/public/interfaces", |
556 "//ui/mojo/geometry:interfaces", | 556 "//ui/mojo/geometry:interfaces", |
557 ] | 557 ] |
558 } | 558 } |
OLD | NEW |