Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(480)

Side by Side Diff: content/common/BUILD.gn

Issue 1125263005: MJPEG acceleration for V4L2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address kcwu's comments Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 } 354 }
355 if (use_v4l2_codec) { 355 if (use_v4l2_codec) {
356 defines += [ "USE_V4L2_CODEC" ] 356 defines += [ "USE_V4L2_CODEC" ]
357 sources += [ 357 sources += [
358 "gpu/media/generic_v4l2_device.cc", 358 "gpu/media/generic_v4l2_device.cc",
359 "gpu/media/generic_v4l2_device.h", 359 "gpu/media/generic_v4l2_device.h",
360 "gpu/media/v4l2_device.cc", 360 "gpu/media/v4l2_device.cc",
361 "gpu/media/v4l2_device.h", 361 "gpu/media/v4l2_device.h",
362 "gpu/media/v4l2_image_processor.cc", 362 "gpu/media/v4l2_image_processor.cc",
363 "gpu/media/v4l2_image_processor.h", 363 "gpu/media/v4l2_image_processor.h",
364 "gpu/media/v4l2_jpeg_decode_accelerator.cc",
365 "gpu/media/v4l2_jpeg_decode_accelerator.h",
364 "gpu/media/v4l2_slice_video_decode_accelerator.cc", 366 "gpu/media/v4l2_slice_video_decode_accelerator.cc",
365 "gpu/media/v4l2_slice_video_decode_accelerator.h", 367 "gpu/media/v4l2_slice_video_decode_accelerator.h",
366 "gpu/media/v4l2_video_decode_accelerator.cc", 368 "gpu/media/v4l2_video_decode_accelerator.cc",
367 "gpu/media/v4l2_video_decode_accelerator.h", 369 "gpu/media/v4l2_video_decode_accelerator.h",
368 "gpu/media/v4l2_video_encode_accelerator.cc", 370 "gpu/media/v4l2_video_encode_accelerator.cc",
369 "gpu/media/v4l2_video_encode_accelerator.h", 371 "gpu/media/v4l2_video_encode_accelerator.h",
370 ] 372 ]
371 libs = [ 373 libs = [
372 "EGL", 374 "EGL",
373 "GLESv2", 375 "GLESv2",
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 "permission_service.mojom", 491 "permission_service.mojom",
490 "presentation/presentation_service.mojom", 492 "presentation/presentation_service.mojom",
491 "render_frame_setup.mojom", 493 "render_frame_setup.mojom",
492 ] 494 ]
493 495
494 deps = [ 496 deps = [
495 "//content/public/common:mojo_bindings", 497 "//content/public/common:mojo_bindings",
496 "//mojo/application/public/interfaces", 498 "//mojo/application/public/interfaces",
497 ] 499 ]
498 } 500 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698