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

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: Add CalledOnValidThread() check. 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 'common/android/address_parser.cc', 112 'common/android/address_parser.cc',
113 'common/android/address_parser.h', 113 'common/android/address_parser.h',
114 'common/android/address_parser_internal.cc', 114 'common/android/address_parser_internal.cc',
115 'common/android/address_parser_internal.h', 115 'common/android/address_parser_internal.h',
116 'common/android/common_jni_registrar.cc', 116 'common/android/common_jni_registrar.cc',
117 'common/android/common_jni_registrar.h', 117 'common/android/common_jni_registrar.h',
118 'common/android/device_telephony_info.cc', 118 'common/android/device_telephony_info.cc',
119 'common/android/device_telephony_info.h', 119 'common/android/device_telephony_info.h',
120 'common/android/hash_set.cc', 120 'common/android/hash_set.cc',
121 'common/android/hash_set.h', 121 'common/android/hash_set.h',
122 'common/android/surface_texture_lookup.cc',
123 'common/android/surface_texture_lookup.h',
122 'common/android/surface_texture_peer.cc', 124 'common/android/surface_texture_peer.cc',
123 'common/android/surface_texture_peer.h', 125 'common/android/surface_texture_peer.h',
124 'common/appcache_messages.h', 126 'common/appcache_messages.h',
125 'common/browser_plugin/browser_plugin_constants.cc', 127 'common/browser_plugin/browser_plugin_constants.cc',
126 'common/browser_plugin/browser_plugin_constants.h', 128 'common/browser_plugin/browser_plugin_constants.h',
127 'common/browser_plugin/browser_plugin_messages.h', 129 'common/browser_plugin/browser_plugin_messages.h',
128 'common/cc_messages.cc', 130 'common/cc_messages.cc',
129 'common/cc_messages.h', 131 'common/cc_messages.h',
130 'common/child_process_host_impl.cc', 132 'common/child_process_host_impl.cc',
131 'common/child_process_host_impl.h', 133 'common/child_process_host_impl.h',
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
487 'sources!': [ 489 'sources!': [
488 'common/plugin_list_posix.cc', 490 'common/plugin_list_posix.cc',
489 ], 491 ],
490 'link_settings': { 492 'link_settings': {
491 'libraries': [ 493 'libraries': [
492 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', 494 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
493 ], 495 ],
494 }, 496 },
495 }], 497 }],
496 ['OS=="android"',{ 498 ['OS=="android"',{
499 'sources': [
500 'common/gpu/client/gpu_memory_buffer_impl_surface_texture.cc',
501 'common/gpu/client/gpu_memory_buffer_impl_surface_texture.h',
502 ],
497 'link_settings': { 503 'link_settings': {
498 'libraries': [ 504 'libraries': [
499 '-landroid', # ANativeWindow 505 '-landroid', # ANativeWindow
500 ], 506 ],
501 }, 507 },
502 'dependencies': [ 508 'dependencies': [
503 'content.gyp:content_jni_headers', 509 'content.gyp:content_jni_headers',
504 'content.gyp:common_aidl', 510 'content.gyp:common_aidl',
505 ], 511 ],
506 }], 512 }],
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
705 'common/sandbox_linux/bpf_renderer_policy_linux.cc', 711 'common/sandbox_linux/bpf_renderer_policy_linux.cc',
706 'common/sandbox_linux/bpf_renderer_policy_linux.h', 712 'common/sandbox_linux/bpf_renderer_policy_linux.h',
707 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc', 713 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc',
708 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h', 714 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h',
709 ], 715 ],
710 }, { 716 }, {
711 'defines': ['USE_SECCOMP_BPF'], 717 'defines': ['USE_SECCOMP_BPF'],
712 }], 718 }],
713 ], 719 ],
714 } 720 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698