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

Side by Side Diff: content/content_common.gypi

Issue 322433004: Create VTVideoDecodeAccelerator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compilation issues. Created 6 years, 6 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'dependencies': [ 6 'dependencies': [
7 '../base/base.gyp:base', 7 '../base/base.gyp:base',
8 '../components/tracing.gyp:tracing', 8 '../components/tracing.gyp:tracing',
9 '../gpu/command_buffer/command_buffer.gyp:gles2_utils', 9 '../gpu/command_buffer/command_buffer.gyp:gles2_utils',
10 '../net/net.gyp:net', 10 '../net/net.gyp:net',
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after
559 }, 559 },
560 ], 560 ],
561 }], 561 }],
562 ['OS=="mac"', { 562 ['OS=="mac"', {
563 'dependencies': [ 563 'dependencies': [
564 '../webkit/webkit_resources.gyp:webkit_resources', 564 '../webkit/webkit_resources.gyp:webkit_resources',
565 ], 565 ],
566 'sources': [ 566 'sources': [
567 'common/gpu/client/gpu_memory_buffer_impl_io_surface.cc', 567 'common/gpu/client/gpu_memory_buffer_impl_io_surface.cc',
568 'common/gpu/client/gpu_memory_buffer_impl_io_surface.h', 568 'common/gpu/client/gpu_memory_buffer_impl_io_surface.h',
569 'common/gpu/media/vt_video_decode_accelerator.cc',
570 'common/gpu/media/vt_video_decode_accelerator.h',
569 ], 571 ],
570 'sources!': [ 572 'sources!': [
571 'common/plugin_list_posix.cc', 573 'common/plugin_list_posix.cc',
572 ], 574 ],
573 'link_settings': { 575 'link_settings': {
574 'libraries': [ 576 'libraries': [
575 '$(SDKROOT)/System/Library/Frameworks/IOSurface.framework', 577 '$(SDKROOT)/System/Library/Frameworks/IOSurface.framework',
576 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', 578 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
577 ], 579 ],
578 }, 580 },
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
794 'common/sandbox_linux/bpf_renderer_policy_linux.cc', 796 'common/sandbox_linux/bpf_renderer_policy_linux.cc',
795 'common/sandbox_linux/bpf_renderer_policy_linux.h', 797 'common/sandbox_linux/bpf_renderer_policy_linux.h',
796 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc', 798 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc',
797 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h', 799 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h',
798 ], 800 ],
799 }, { 801 }, {
800 'defines': ['USE_SECCOMP_BPF'], 802 'defines': ['USE_SECCOMP_BPF'],
801 }], 803 }],
802 ], 804 ],
803 } 805 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698