| 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", |
| 358 ] | 362 ] |
| 359 if (use_v4lplugin) { | 363 if (use_v4lplugin) { |
| 360 defines += [ "USE_LIBV4L2" ] | 364 defines += [ "USE_LIBV4L2" ] |
| 361 sources += get_target_outputs(":libv4l2_generate_stubs") | 365 sources += get_target_outputs(":libv4l2_generate_stubs") |
| 362 deps += [ ":libv4l2_generate_stubs" ] | 366 deps += [ ":libv4l2_generate_stubs" ] |
| 363 } | 367 } |
| 364 if (use_v4l2_codec) { | 368 if (use_v4l2_codec) { |
| 365 defines += [ "USE_V4L2_CODEC" ] | 369 defines += [ "USE_V4L2_CODEC" ] |
| 366 sources += [ | 370 sources += [ |
| 367 "gpu/media/generic_v4l2_device.cc", | 371 "gpu/media/generic_v4l2_device.cc", |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 | 510 |
| 507 import_dirs = [ "//mojo/services" ] | 511 import_dirs = [ "//mojo/services" ] |
| 508 | 512 |
| 509 deps = [ | 513 deps = [ |
| 510 "//content/public/common:mojo_bindings", | 514 "//content/public/common:mojo_bindings", |
| 511 "//mojo/application/public/interfaces", | 515 "//mojo/application/public/interfaces", |
| 512 "//skia/public/interfaces", | 516 "//skia/public/interfaces", |
| 513 "//ui/mojo/geometry:interfaces", | 517 "//ui/mojo/geometry:interfaces", |
| 514 ] | 518 ] |
| 515 } | 519 } |
| OLD | NEW |