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

Side by Side Diff: content/content_common.gypi

Issue 175223003: HW Video: Make media::VideoFrame handle the sync point of the compositor as well as webgl (Closed) Base URL: https://git.chromium.org/chromium/src.git@master
Patch Set: Make GpuVideoAcceleratorFactories::ReadPixels() receive mailbox, instead of texture Created 6 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 (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 '../net/net.gyp:net', 9 '../net/net.gyp:net',
10 '../skia/skia.gyp:skia', 10 '../skia/skia.gyp:skia',
(...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after
561 'include_dirs': [ 561 'include_dirs': [
562 '<(DEPTH)/third_party/khronos', 562 '<(DEPTH)/third_party/khronos',
563 ], 563 ],
564 'link_settings': { 564 'link_settings': {
565 'libraries': [ 565 'libraries': [
566 '-lEGL', 566 '-lEGL',
567 '-lGLESv2', 567 '-lGLESv2',
568 ], 568 ],
569 }, 569 },
570 }], 570 }],
571 ['target_arch != "arm" and chromeos == 1 and use_x11 == 1', { 571 ['(chromeos==1 or OS=="linux") and use_x11==1 and target_arch != "arm"', {
572 'sources': [ 572 'sources': [
573 'common/gpu/media/h264_dpb.cc', 573 'common/gpu/media/h264_dpb.cc',
574 'common/gpu/media/h264_dpb.h', 574 'common/gpu/media/h264_dpb.h',
575 'common/gpu/media/va_surface.h', 575 'common/gpu/media/va_surface.h',
576 'common/gpu/media/vaapi_h264_decoder.cc', 576 'common/gpu/media/vaapi_h264_decoder.cc',
577 'common/gpu/media/vaapi_h264_decoder.h', 577 'common/gpu/media/vaapi_h264_decoder.h',
578 'common/gpu/media/vaapi_video_decode_accelerator.cc', 578 'common/gpu/media/vaapi_video_decode_accelerator.cc',
579 'common/gpu/media/vaapi_video_decode_accelerator.h', 579 'common/gpu/media/vaapi_video_decode_accelerator.h',
580 'common/gpu/media/vaapi_wrapper.cc', 580 'common/gpu/media/vaapi_wrapper.cc',
581 'common/gpu/media/vaapi_wrapper.h', 581 'common/gpu/media/vaapi_wrapper.h',
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
652 'common/sandbox_linux/bpf_renderer_policy_linux.cc', 652 'common/sandbox_linux/bpf_renderer_policy_linux.cc',
653 'common/sandbox_linux/bpf_renderer_policy_linux.h', 653 'common/sandbox_linux/bpf_renderer_policy_linux.h',
654 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc', 654 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc',
655 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h', 655 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h',
656 ], 656 ],
657 }, { 657 }, {
658 'defines': ['USE_SECCOMP_BPF'], 658 'defines': ['USE_SECCOMP_BPF'],
659 }], 659 }],
660 ], 660 ],
661 } 661 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698