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

Side by Side Diff: content/content_common.gypi

Issue 195583003: Add initial GpuMemoryBufferSurfaceTexture implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use base::ProcessHandle explicitly in a few places 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 | 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 '../net/net.gyp:net', 9 '../net/net.gyp:net',
10 '../skia/skia.gyp:skia', 10 '../skia/skia.gyp:skia',
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 'common/android/address_parser.cc', 125 'common/android/address_parser.cc',
126 'common/android/address_parser.h', 126 'common/android/address_parser.h',
127 'common/android/address_parser_internal.cc', 127 'common/android/address_parser_internal.cc',
128 'common/android/address_parser_internal.h', 128 'common/android/address_parser_internal.h',
129 'common/android/common_jni_registrar.cc', 129 'common/android/common_jni_registrar.cc',
130 'common/android/common_jni_registrar.h', 130 'common/android/common_jni_registrar.h',
131 'common/android/device_telephony_info.cc', 131 'common/android/device_telephony_info.cc',
132 'common/android/device_telephony_info.h', 132 'common/android/device_telephony_info.h',
133 'common/android/hash_set.cc', 133 'common/android/hash_set.cc',
134 'common/android/hash_set.h', 134 'common/android/hash_set.h',
135 'common/android/surface_texture_lookup.cc',
136 'common/android/surface_texture_lookup.h',
135 'common/android/surface_texture_peer.cc', 137 'common/android/surface_texture_peer.cc',
136 'common/android/surface_texture_peer.h', 138 'common/android/surface_texture_peer.h',
137 'common/appcache_messages.h', 139 'common/appcache_messages.h',
138 'common/browser_plugin/browser_plugin_constants.cc', 140 'common/browser_plugin/browser_plugin_constants.cc',
139 'common/browser_plugin/browser_plugin_constants.h', 141 'common/browser_plugin/browser_plugin_constants.h',
140 'common/browser_plugin/browser_plugin_messages.h', 142 'common/browser_plugin/browser_plugin_messages.h',
141 'common/cc_messages.cc', 143 'common/cc_messages.cc',
142 'common/cc_messages.h', 144 'common/cc_messages.h',
143 'common/child_process_host_impl.cc', 145 'common/child_process_host_impl.cc',
144 'common/child_process_host_impl.h', 146 'common/child_process_host_impl.h',
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after
536 'sources!': [ 538 'sources!': [
537 'common/plugin_list_posix.cc', 539 'common/plugin_list_posix.cc',
538 ], 540 ],
539 'link_settings': { 541 'link_settings': {
540 'libraries': [ 542 'libraries': [
541 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', 543 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
542 ], 544 ],
543 }, 545 },
544 }], 546 }],
545 ['OS=="android"',{ 547 ['OS=="android"',{
548 'sources': [
549 'common/gpu/client/gpu_memory_buffer_impl_surface_texture.cc',
550 'common/gpu/client/gpu_memory_buffer_impl_surface_texture.h',
551 ],
546 'link_settings': { 552 'link_settings': {
547 'libraries': [ 553 'libraries': [
548 '-landroid', # ANativeWindow 554 '-landroid', # ANativeWindow
549 ], 555 ],
550 }, 556 },
551 'dependencies': [ 557 'dependencies': [
552 'content.gyp:content_jni_headers', 558 'content.gyp:content_jni_headers',
553 'content.gyp:common_aidl', 559 'content.gyp:common_aidl',
554 ], 560 ],
555 }], 561 }],
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
754 'common/sandbox_linux/bpf_renderer_policy_linux.cc', 760 'common/sandbox_linux/bpf_renderer_policy_linux.cc',
755 'common/sandbox_linux/bpf_renderer_policy_linux.h', 761 'common/sandbox_linux/bpf_renderer_policy_linux.h',
756 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc', 762 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc',
757 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h', 763 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h',
758 ], 764 ],
759 }, { 765 }, {
760 'defines': ['USE_SECCOMP_BPF'], 766 'defines': ['USE_SECCOMP_BPF'],
761 }], 767 }],
762 ], 768 ],
763 } 769 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698