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

Side by Side Diff: content/content_common.gypi

Issue 225023009: Add Intel DRM backed GpuMemoryBuffer implementation. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix typos Created 6 years, 8 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 | Annotate | Revision Log
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 527 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 'link_settings': { 538 'link_settings': {
539 'libraries': [ 539 'libraries': [
540 '-landroid', # ANativeWindow 540 '-landroid', # ANativeWindow
541 ], 541 ],
542 }, 542 },
543 'dependencies': [ 543 'dependencies': [
544 'content.gyp:content_jni_headers', 544 'content.gyp:content_jni_headers',
545 'content.gyp:common_aidl', 545 'content.gyp:common_aidl',
546 ], 546 ],
547 }], 547 }],
548 ['OS=="linux"', {
549 'dependencies': [
550 '<(DEPTH)/build/linux/system.gyp:dridrm',
551 ],
552 'sources': [
553 'common/gpu/client/gpu_memory_buffer_impl_intel_drm.cc',
554 'common/gpu/client/gpu_memory_buffer_impl_intel_drm.h',
555 ],
556 'link_settings': {
557 'libraries': [
558 '-ldrm_intel',
559 ],
560 },
561 }],
548 ['toolkit_uses_gtk == 1', { 562 ['toolkit_uses_gtk == 1', {
549 'dependencies': [ 563 'dependencies': [
550 '../build/linux/system.gyp:gtk', 564 '../build/linux/system.gyp:gtk',
551 ], 565 ],
552 }], 566 }],
553 ['use_pango == 1', { 567 ['use_pango == 1', {
554 'dependencies': [ 568 'dependencies': [
555 '../build/linux/system.gyp:pangocairo', 569 '../build/linux/system.gyp:pangocairo',
556 ], 570 ],
557 'sources!': [ 571 'sources!': [
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
748 'common/sandbox_linux/bpf_renderer_policy_linux.cc', 762 'common/sandbox_linux/bpf_renderer_policy_linux.cc',
749 'common/sandbox_linux/bpf_renderer_policy_linux.h', 763 'common/sandbox_linux/bpf_renderer_policy_linux.h',
750 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc', 764 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc',
751 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h', 765 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h',
752 ], 766 ],
753 }, { 767 }, {
754 'defines': ['USE_SECCOMP_BPF'], 768 'defines': ['USE_SECCOMP_BPF'],
755 }], 769 }],
756 ], 770 ],
757 } 771 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698