| 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 | 9 |
| 10 if (is_chromeos && current_cpu != "arm") { | 10 if (is_chromeos && current_cpu != "arm") { |
| (...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 } | 355 } |
| 356 if (use_v4l2_codec) { | 356 if (use_v4l2_codec) { |
| 357 defines += [ "USE_V4L2_CODEC" ] | 357 defines += [ "USE_V4L2_CODEC" ] |
| 358 sources += [ | 358 sources += [ |
| 359 "gpu/media/generic_v4l2_device.cc", | 359 "gpu/media/generic_v4l2_device.cc", |
| 360 "gpu/media/generic_v4l2_device.h", | 360 "gpu/media/generic_v4l2_device.h", |
| 361 "gpu/media/v4l2_device.cc", | 361 "gpu/media/v4l2_device.cc", |
| 362 "gpu/media/v4l2_device.h", | 362 "gpu/media/v4l2_device.h", |
| 363 "gpu/media/v4l2_image_processor.cc", | 363 "gpu/media/v4l2_image_processor.cc", |
| 364 "gpu/media/v4l2_image_processor.h", | 364 "gpu/media/v4l2_image_processor.h", |
| 365 "gpu/media/v4l2_jpeg_decode_accelerator.cc", |
| 366 "gpu/media/v4l2_jpeg_decode_accelerator.h", |
| 365 "gpu/media/v4l2_slice_video_decode_accelerator.cc", | 367 "gpu/media/v4l2_slice_video_decode_accelerator.cc", |
| 366 "gpu/media/v4l2_slice_video_decode_accelerator.h", | 368 "gpu/media/v4l2_slice_video_decode_accelerator.h", |
| 367 "gpu/media/v4l2_video_decode_accelerator.cc", | 369 "gpu/media/v4l2_video_decode_accelerator.cc", |
| 368 "gpu/media/v4l2_video_decode_accelerator.h", | 370 "gpu/media/v4l2_video_decode_accelerator.h", |
| 369 "gpu/media/v4l2_video_encode_accelerator.cc", | 371 "gpu/media/v4l2_video_encode_accelerator.cc", |
| 370 "gpu/media/v4l2_video_encode_accelerator.h", | 372 "gpu/media/v4l2_video_encode_accelerator.h", |
| 371 ] | 373 ] |
| 372 libs = [ | 374 libs = [ |
| 373 "EGL", | 375 "EGL", |
| 374 "GLESv2", | 376 "GLESv2", |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 497 "vr_service.mojom", | 499 "vr_service.mojom", |
| 498 ] | 500 ] |
| 499 | 501 |
| 500 import_dirs = [ "//mojo/services" ] | 502 import_dirs = [ "//mojo/services" ] |
| 501 | 503 |
| 502 deps = [ | 504 deps = [ |
| 503 "//content/public/common:mojo_bindings", | 505 "//content/public/common:mojo_bindings", |
| 504 "//mojo/application/public/interfaces", | 506 "//mojo/application/public/interfaces", |
| 505 ] | 507 ] |
| 506 } | 508 } |
| OLD | NEW |