| 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 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 sources += [ | 351 sources += [ |
| 352 "gpu/media/accelerated_video_decoder.h", | 352 "gpu/media/accelerated_video_decoder.h", |
| 353 "gpu/media/h264_decoder.cc", | 353 "gpu/media/h264_decoder.cc", |
| 354 "gpu/media/h264_decoder.h", | 354 "gpu/media/h264_decoder.h", |
| 355 "gpu/media/h264_dpb.cc", | 355 "gpu/media/h264_dpb.cc", |
| 356 "gpu/media/h264_dpb.h", | 356 "gpu/media/h264_dpb.h", |
| 357 "gpu/media/vp8_decoder.cc", | 357 "gpu/media/vp8_decoder.cc", |
| 358 "gpu/media/vp8_decoder.h", | 358 "gpu/media/vp8_decoder.h", |
| 359 "gpu/media/vp8_picture.cc", | 359 "gpu/media/vp8_picture.cc", |
| 360 "gpu/media/vp8_picture.h", | 360 "gpu/media/vp8_picture.h", |
| 361 "gpu/media/vp9_decoder.cc", |
| 362 "gpu/media/vp9_decoder.h", |
| 363 "gpu/media/vp9_picture.cc", |
| 364 "gpu/media/vp9_picture.h", |
| 361 ] | 365 ] |
| 362 if (use_v4lplugin) { | 366 if (use_v4lplugin) { |
| 363 defines += [ "USE_LIBV4L2" ] | 367 defines += [ "USE_LIBV4L2" ] |
| 364 sources += get_target_outputs(":libv4l2_generate_stubs") | 368 sources += get_target_outputs(":libv4l2_generate_stubs") |
| 365 deps += [ ":libv4l2_generate_stubs" ] | 369 deps += [ ":libv4l2_generate_stubs" ] |
| 366 } | 370 } |
| 367 if (use_v4l2_codec) { | 371 if (use_v4l2_codec) { |
| 368 defines += [ "USE_V4L2_CODEC" ] | 372 defines += [ "USE_V4L2_CODEC" ] |
| 369 sources += [ | 373 sources += [ |
| 370 "gpu/media/generic_v4l2_device.cc", | 374 "gpu/media/generic_v4l2_device.cc", |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 509 | 513 |
| 510 import_dirs = [ "//mojo/services" ] | 514 import_dirs = [ "//mojo/services" ] |
| 511 | 515 |
| 512 deps = [ | 516 deps = [ |
| 513 "//content/public/common:mojo_bindings", | 517 "//content/public/common:mojo_bindings", |
| 514 "//mojo/application/public/interfaces", | 518 "//mojo/application/public/interfaces", |
| 515 "//skia/public/interfaces", | 519 "//skia/public/interfaces", |
| 516 "//ui/mojo/geometry:interfaces", | 520 "//ui/mojo/geometry:interfaces", |
| 517 ] | 521 ] |
| 518 } | 522 } |
| OLD | NEW |