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

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

Issue 1451353002: Implement GpuArcVideoService for arc video accelerator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed dcheng's comments Created 4 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
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("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//mojo/public/tools/bindings/mojom.gni") 9 import("//mojo/public/tools/bindings/mojom.gni")
10 if (is_mac) { 10 if (is_mac) {
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 } 372 }
373 373
374 if (enable_mojo_media == "gpu") { 374 if (enable_mojo_media == "gpu") {
375 deps += [ "//media/mojo/services:application" ] 375 deps += [ "//media/mojo/services:application" ]
376 } 376 }
377 } 377 }
378 378
379 if (is_chromeos) { 379 if (is_chromeos) {
380 sources += [ 380 sources += [
381 "gpu/media/accelerated_video_decoder.h", 381 "gpu/media/accelerated_video_decoder.h",
382 "gpu/media/gpu_arc_video_service.cc",
383 "gpu/media/gpu_arc_video_service.h",
382 "gpu/media/h264_decoder.cc", 384 "gpu/media/h264_decoder.cc",
383 "gpu/media/h264_decoder.h", 385 "gpu/media/h264_decoder.h",
384 "gpu/media/h264_dpb.cc", 386 "gpu/media/h264_dpb.cc",
385 "gpu/media/h264_dpb.h", 387 "gpu/media/h264_dpb.h",
386 "gpu/media/vp8_decoder.cc", 388 "gpu/media/vp8_decoder.cc",
387 "gpu/media/vp8_decoder.h", 389 "gpu/media/vp8_decoder.h",
388 "gpu/media/vp8_picture.cc", 390 "gpu/media/vp8_picture.cc",
389 "gpu/media/vp8_picture.h", 391 "gpu/media/vp8_picture.h",
390 "gpu/media/vp9_decoder.cc", 392 "gpu/media/vp9_decoder.cc",
391 "gpu/media/vp9_decoder.h", 393 "gpu/media/vp9_decoder.h",
392 "gpu/media/vp9_picture.cc", 394 "gpu/media/vp9_picture.cc",
393 "gpu/media/vp9_picture.h", 395 "gpu/media/vp9_picture.h",
394 ] 396 ]
397 deps += [ "//components/arc" ]
395 if (use_v4lplugin) { 398 if (use_v4lplugin) {
396 defines += [ "USE_LIBV4L2" ] 399 defines += [ "USE_LIBV4L2" ]
397 sources += get_target_outputs(":libv4l2_generate_stubs") 400 sources += get_target_outputs(":libv4l2_generate_stubs")
398 deps += [ ":libv4l2_generate_stubs" ] 401 deps += [ ":libv4l2_generate_stubs" ]
399 } 402 }
400 if (use_v4l2_codec) { 403 if (use_v4l2_codec) {
401 defines += [ "USE_V4L2_CODEC" ] 404 defines += [ "USE_V4L2_CODEC" ]
402 deps += [ "//third_party/libyuv" ] 405 deps += [ "//third_party/libyuv" ]
403 sources += [ 406 sources += [
404 "gpu/media/generic_v4l2_device.cc", 407 "gpu/media/generic_v4l2_device.cc",
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
546 import_dirs = [ "//mojo/services" ] 549 import_dirs = [ "//mojo/services" ]
547 550
548 deps = [ 551 deps = [
549 "//components/mus/public/interfaces", 552 "//components/mus/public/interfaces",
550 "//content/public/common:mojo_bindings", 553 "//content/public/common:mojo_bindings",
551 "//mojo/application/public/interfaces", 554 "//mojo/application/public/interfaces",
552 "//skia/public/interfaces", 555 "//skia/public/interfaces",
553 "//ui/mojo/geometry:interfaces", 556 "//ui/mojo/geometry:interfaces",
554 ] 557 ]
555 } 558 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698