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

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

Issue 1636083003: H264 HW encode using VideoToolbox (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 227
228 if (is_mac) { 228 if (is_mac) {
229 sources += [ 229 sources += [
230 "gpu/client/gpu_memory_buffer_impl_io_surface.cc", 230 "gpu/client/gpu_memory_buffer_impl_io_surface.cc",
231 "gpu/client/gpu_memory_buffer_impl_io_surface.h", 231 "gpu/client/gpu_memory_buffer_impl_io_surface.h",
232 "gpu/gpu_memory_buffer_factory_io_surface.cc", 232 "gpu/gpu_memory_buffer_factory_io_surface.cc",
233 "gpu/gpu_memory_buffer_factory_io_surface.h", 233 "gpu/gpu_memory_buffer_factory_io_surface.h",
234 "gpu/media/vt_mac.h", 234 "gpu/media/vt_mac.h",
235 "gpu/media/vt_video_decode_accelerator_mac.cc", 235 "gpu/media/vt_video_decode_accelerator_mac.cc",
236 "gpu/media/vt_video_decode_accelerator_mac.h", 236 "gpu/media/vt_video_decode_accelerator_mac.h",
237 "gpu/media/vt_video_encode_accelerator.cc",
238 "gpu/media/vt_video_encode_accelerator.h",
hbos_chromium 2016/02/03 18:21:08 Is there a reason the decoder accelerator is named
emircan 2016/02/04 05:18:51 I realize there are some inconsistency in this, an
237 ] + get_target_outputs(":libvt_generate_stubs") 239 ] + get_target_outputs(":libvt_generate_stubs")
238 240
239 sources -= [ "plugin_list_posix.cc" ] 241 sources -= [ "plugin_list_posix.cc" ]
240 242
241 deps += [ 243 deps += [
242 ":libvt_generate_stubs", 244 ":libvt_generate_stubs",
243 "//content:resources", 245 "//content:resources",
244 "//content/app/resources", 246 "//content/app/resources",
245 "//third_party/WebKit/public:image_resources", 247 "//third_party/WebKit/public:image_resources",
246 "//third_party/WebKit/public:resources", 248 "//third_party/WebKit/public:resources",
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 import_dirs = [ "//mojo/services" ] 553 import_dirs = [ "//mojo/services" ]
552 554
553 deps = [ 555 deps = [
554 "//components/mus/public/interfaces", 556 "//components/mus/public/interfaces",
555 "//content/public/common:mojo_bindings", 557 "//content/public/common:mojo_bindings",
556 "//mojo/shell/public/interfaces", 558 "//mojo/shell/public/interfaces",
557 "//skia/public/interfaces", 559 "//skia/public/interfaces",
558 "//ui/mojo/geometry:interfaces", 560 "//ui/mojo/geometry:interfaces",
559 ] 561 ]
560 } 562 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698