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

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

Issue 1313913003: Begin refactor of AVDA to support zero-copy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cl feedback. Created 5 years, 3 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 if (is_mac) { 9 if (is_mac) {
10 import("//build/config/mac/mac_sdk.gni") 10 import("//build/config/mac/mac_sdk.gni")
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 "pepper_renderer_instance_data.h", 328 "pepper_renderer_instance_data.h",
329 "plugin_list.cc", 329 "plugin_list.cc",
330 "plugin_list.h", 330 "plugin_list.h",
331 "plugin_list_posix.cc", 331 "plugin_list_posix.cc",
332 "sandbox_util.cc", 332 "sandbox_util.cc",
333 ] 333 ]
334 } 334 }
335 335
336 if (is_android) { 336 if (is_android) {
337 sources += [ 337 sources += [
338 "gpu/media/android_copying_backing_strategy.cc",
339 "gpu/media/android_copying_backing_strategy.h",
338 "gpu/media/android_video_decode_accelerator.cc", 340 "gpu/media/android_video_decode_accelerator.cc",
339 "gpu/media/android_video_decode_accelerator.h", 341 "gpu/media/android_video_decode_accelerator.h",
342 "gpu/media/avda_return_on_failure.h",
340 ] 343 ]
341 344
342 if (enable_webrtc) { 345 if (enable_webrtc) {
343 deps += [ "//third_party/libyuv" ] 346 deps += [ "//third_party/libyuv" ]
344 } 347 }
345 } 348 }
346 349
347 if (is_chromeos) { 350 if (is_chromeos) {
348 sources += [ 351 sources += [
349 "gpu/media/accelerated_video_decoder.h", 352 "gpu/media/accelerated_video_decoder.h",
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
507 510
508 import_dirs = [ "//mojo/services" ] 511 import_dirs = [ "//mojo/services" ]
509 512
510 deps = [ 513 deps = [
511 "//content/public/common:mojo_bindings", 514 "//content/public/common:mojo_bindings",
512 "//mojo/application/public/interfaces", 515 "//mojo/application/public/interfaces",
513 "//skia/public/interfaces", 516 "//skia/public/interfaces",
514 "//ui/mojo/geometry:interfaces", 517 "//ui/mojo/geometry:interfaces",
515 ] 518 ]
516 } 519 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698