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

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: Rebase & posciak nits. Created 4 years, 9 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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 221
222 if (is_mac) { 222 if (is_mac) {
223 sources += [ 223 sources += [
224 "gpu/client/gpu_memory_buffer_impl_io_surface.cc", 224 "gpu/client/gpu_memory_buffer_impl_io_surface.cc",
225 "gpu/client/gpu_memory_buffer_impl_io_surface.h", 225 "gpu/client/gpu_memory_buffer_impl_io_surface.h",
226 "gpu/gpu_memory_buffer_factory_io_surface.cc", 226 "gpu/gpu_memory_buffer_factory_io_surface.cc",
227 "gpu/gpu_memory_buffer_factory_io_surface.h", 227 "gpu/gpu_memory_buffer_factory_io_surface.h",
228 "gpu/media/vt_mac.h", 228 "gpu/media/vt_mac.h",
229 "gpu/media/vt_video_decode_accelerator_mac.cc", 229 "gpu/media/vt_video_decode_accelerator_mac.cc",
230 "gpu/media/vt_video_decode_accelerator_mac.h", 230 "gpu/media/vt_video_decode_accelerator_mac.h",
231 "gpu/media/vt_video_encode_accelerator_mac.cc",
232 "gpu/media/vt_video_encode_accelerator_mac.h",
231 ] + get_target_outputs(":libvt_generate_stubs") 233 ] + get_target_outputs(":libvt_generate_stubs")
232 234
233 sources -= [ "plugin_list_posix.cc" ] 235 sources -= [ "plugin_list_posix.cc" ]
234 236
235 deps += [ 237 deps += [
236 ":libvt_generate_stubs", 238 ":libvt_generate_stubs",
237 "//content:resources", 239 "//content:resources",
238 "//content/app/resources", 240 "//content/app/resources",
239 "//third_party/WebKit/public:image_resources", 241 "//third_party/WebKit/public:image_resources",
240 "//third_party/WebKit/public:resources", 242 "//third_party/WebKit/public:resources",
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
545 547
546 public_deps = [ 548 public_deps = [
547 "//components/leveldb/public/interfaces", 549 "//components/leveldb/public/interfaces",
548 "//components/mus/public/interfaces", 550 "//components/mus/public/interfaces",
549 "//content/public/common:mojo_bindings", 551 "//content/public/common:mojo_bindings",
550 "//mojo/shell/public/interfaces", 552 "//mojo/shell/public/interfaces",
551 "//skia/public/interfaces", 553 "//skia/public/interfaces",
552 "//ui/mojo/geometry:interfaces", 554 "//ui/mojo/geometry:interfaces",
553 ] 555 ]
554 } 556 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698