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