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

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

Issue 852103002: Revert of Add accelerated video decoder interface, VP8 and H.264 implementations and hook up to V4L2SVDA (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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
« no previous file with comments | « no previous file | content/common/gpu/media/accelerated_video_decoder.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 9
10 if (is_chromeos && cpu_arch != "arm") { 10 if (is_chromeos && cpu_arch != "arm") {
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 "gpu/media/v4l2_video_device.h", 295 "gpu/media/v4l2_video_device.h",
296 "gpu/media/v4l2_video_encode_accelerator.cc", 296 "gpu/media/v4l2_video_encode_accelerator.cc",
297 "gpu/media/v4l2_video_encode_accelerator.h", 297 "gpu/media/v4l2_video_encode_accelerator.h",
298 ] 298 ]
299 libs = [ 299 libs = [
300 "EGL", 300 "EGL",
301 "GLESv2", 301 "GLESv2",
302 ] 302 ]
303 if (cpu_arch == "arm") { 303 if (cpu_arch == "arm") {
304 sources += [ 304 sources += [
305 "gpu/media/accelerated_video_decoder.h",
306 "gpu/media/h264_decoder.cc",
307 "gpu/media/h264_decoder.h",
308 "gpu/media/h264_dpb.cc",
309 "gpu/media/h264_dpb.h",
310 "gpu/media/tegra_v4l2_video_device.cc", 305 "gpu/media/tegra_v4l2_video_device.cc",
311 "gpu/media/tegra_v4l2_video_device.h", 306 "gpu/media/tegra_v4l2_video_device.h",
312 "gpu/media/v4l2_slice_video_decode_accelerator.cc",
313 "gpu/media/v4l2_slice_video_decode_accelerator.h",
314 "gpu/media/vp8_decoder.cc",
315 "gpu/media/vp8_decoder.h",
316 "gpu/media/vp8_picture.cc",
317 "gpu/media/vp8_picture.h",
318 ] 307 ]
319 } 308 }
320 } 309 }
321 if (cpu_arch != "arm") { 310 if (cpu_arch != "arm") {
322 sources += [ 311 sources += [
312 "gpu/media/h264_dpb.cc",
313 "gpu/media/h264_dpb.h",
323 "gpu/media/va_surface.h", 314 "gpu/media/va_surface.h",
324 "gpu/media/vaapi_h264_decoder.cc", 315 "gpu/media/vaapi_h264_decoder.cc",
325 "gpu/media/vaapi_h264_decoder.h", 316 "gpu/media/vaapi_h264_decoder.h",
326 "gpu/media/vaapi_h264_dpb.cc",
327 "gpu/media/vaapi_h264_dpb.h",
328 "gpu/media/vaapi_picture.cc", 317 "gpu/media/vaapi_picture.cc",
329 "gpu/media/vaapi_picture.h", 318 "gpu/media/vaapi_picture.h",
330 "gpu/media/vaapi_video_decode_accelerator.cc", 319 "gpu/media/vaapi_video_decode_accelerator.cc",
331 "gpu/media/vaapi_video_decode_accelerator.h", 320 "gpu/media/vaapi_video_decode_accelerator.h",
332 "gpu/media/vaapi_video_encode_accelerator.cc", 321 "gpu/media/vaapi_video_encode_accelerator.cc",
333 "gpu/media/vaapi_video_encode_accelerator.h", 322 "gpu/media/vaapi_video_encode_accelerator.h",
334 "gpu/media/vaapi_wrapper.cc", 323 "gpu/media/vaapi_wrapper.cc",
335 "gpu/media/vaapi_wrapper.h", 324 "gpu/media/vaapi_wrapper.h",
336 ] + get_target_outputs(":libva_generate_stubs") 325 ] + get_target_outputs(":libva_generate_stubs")
337 configs += [ 326 configs += [
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 "geolocation_service.mojom", 395 "geolocation_service.mojom",
407 "permission_service.mojom", 396 "permission_service.mojom",
408 "render_frame_setup.mojom", 397 "render_frame_setup.mojom",
409 ] 398 ]
410 399
411 deps = [ 400 deps = [
412 "//content/public/common:mojo_bindings", 401 "//content/public/common:mojo_bindings",
413 "//mojo/public/interfaces/application:application", 402 "//mojo/public/interfaces/application:application",
414 ] 403 ]
415 } 404 }
OLDNEW
« no previous file with comments | « no previous file | content/common/gpu/media/accelerated_video_decoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698