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("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
9 if (is_mac) { | 9 if (is_mac) { |
10 import("//build/config/mac/mac_sdk.gni") | 10 import("//build/config/mac/mac_sdk.gni") |
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 sources += [ | 348 sources += [ |
349 "gpu/media/accelerated_video_decoder.h", | 349 "gpu/media/accelerated_video_decoder.h", |
350 "gpu/media/h264_decoder.cc", | 350 "gpu/media/h264_decoder.cc", |
351 "gpu/media/h264_decoder.h", | 351 "gpu/media/h264_decoder.h", |
352 "gpu/media/h264_dpb.cc", | 352 "gpu/media/h264_dpb.cc", |
353 "gpu/media/h264_dpb.h", | 353 "gpu/media/h264_dpb.h", |
354 "gpu/media/vp8_decoder.cc", | 354 "gpu/media/vp8_decoder.cc", |
355 "gpu/media/vp8_decoder.h", | 355 "gpu/media/vp8_decoder.h", |
356 "gpu/media/vp8_picture.cc", | 356 "gpu/media/vp8_picture.cc", |
357 "gpu/media/vp8_picture.h", | 357 "gpu/media/vp8_picture.h", |
358 "gpu/media/vp9_decoder.cc", | |
359 "gpu/media/vp9_decoder.h", | |
360 "gpu/media/vp9_picture.cc", | |
361 "gpu/media/vp9_picture.h", | |
362 ] | 358 ] |
363 if (use_v4lplugin) { | 359 if (use_v4lplugin) { |
364 defines += [ "USE_LIBV4L2" ] | 360 defines += [ "USE_LIBV4L2" ] |
365 sources += get_target_outputs(":libv4l2_generate_stubs") | 361 sources += get_target_outputs(":libv4l2_generate_stubs") |
366 deps += [ ":libv4l2_generate_stubs" ] | 362 deps += [ ":libv4l2_generate_stubs" ] |
367 } | 363 } |
368 if (use_v4l2_codec) { | 364 if (use_v4l2_codec) { |
369 defines += [ "USE_V4L2_CODEC" ] | 365 defines += [ "USE_V4L2_CODEC" ] |
370 sources += [ | 366 sources += [ |
371 "gpu/media/generic_v4l2_device.cc", | 367 "gpu/media/generic_v4l2_device.cc", |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
510 | 506 |
511 import_dirs = [ "//mojo/services" ] | 507 import_dirs = [ "//mojo/services" ] |
512 | 508 |
513 deps = [ | 509 deps = [ |
514 "//content/public/common:mojo_bindings", | 510 "//content/public/common:mojo_bindings", |
515 "//mojo/application/public/interfaces", | 511 "//mojo/application/public/interfaces", |
516 "//skia/public/interfaces", | 512 "//skia/public/interfaces", |
517 "//ui/mojo/geometry:interfaces", | 513 "//ui/mojo/geometry:interfaces", |
518 ] | 514 ] |
519 } | 515 } |
OLD | NEW |