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

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 ::InitInstance comments. 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 'common/android/address_parser.cc', 110 'common/android/address_parser.cc',
111 'common/android/address_parser.h', 111 'common/android/address_parser.h',
112 'common/android/address_parser_internal.cc', 112 'common/android/address_parser_internal.cc',
113 'common/android/address_parser_internal.h', 113 'common/android/address_parser_internal.h',
114 'common/android/common_jni_registrar.cc', 114 'common/android/common_jni_registrar.cc',
115 'common/android/common_jni_registrar.h', 115 'common/android/common_jni_registrar.h',
116 'common/android/device_telephony_info.cc', 116 'common/android/device_telephony_info.cc',
117 'common/android/device_telephony_info.h', 117 'common/android/device_telephony_info.h',
118 'common/android/hash_set.cc', 118 'common/android/hash_set.cc',
119 'common/android/hash_set.h', 119 'common/android/hash_set.h',
120 'common/android/surface_texture_lookup.cc',
121 'common/android/surface_texture_lookup.h',
120 'common/android/surface_texture_peer.cc', 122 'common/android/surface_texture_peer.cc',
121 'common/android/surface_texture_peer.h', 123 'common/android/surface_texture_peer.h',
122 'common/appcache_messages.h', 124 'common/appcache_messages.h',
123 'common/browser_plugin/browser_plugin_constants.cc', 125 'common/browser_plugin/browser_plugin_constants.cc',
124 'common/browser_plugin/browser_plugin_constants.h', 126 'common/browser_plugin/browser_plugin_constants.h',
125 'common/browser_plugin/browser_plugin_messages.h', 127 'common/browser_plugin/browser_plugin_messages.h',
126 'common/cc_messages.cc', 128 'common/cc_messages.cc',
127 'common/cc_messages.h', 129 'common/cc_messages.h',
128 'common/child_process_host_impl.cc', 130 'common/child_process_host_impl.cc',
129 'common/child_process_host_impl.h', 131 'common/child_process_host_impl.h',
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after
482 'sources!': [ 484 'sources!': [
483 'common/plugin_list_posix.cc', 485 'common/plugin_list_posix.cc',
484 ], 486 ],
485 'link_settings': { 487 'link_settings': {
486 'libraries': [ 488 'libraries': [
487 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', 489 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
488 ], 490 ],
489 }, 491 },
490 }], 492 }],
491 ['OS=="android"',{ 493 ['OS=="android"',{
494 'sources': [
495 'common/gpu/client/gpu_memory_buffer_impl_surface_texture.cc',
496 'common/gpu/client/gpu_memory_buffer_impl_surface_texture.h',
497 ],
492 'link_settings': { 498 'link_settings': {
493 'libraries': [ 499 'libraries': [
494 '-landroid', # ANativeWindow 500 '-landroid', # ANativeWindow
495 ], 501 ],
496 }, 502 },
497 'dependencies': [ 503 'dependencies': [
498 'content.gyp:content_jni_headers', 504 'content.gyp:content_jni_headers',
499 'content.gyp:common_aidl', 505 'content.gyp:common_aidl',
500 ], 506 ],
501 }], 507 }],
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
663 'common/sandbox_linux/bpf_renderer_policy_linux.cc', 669 'common/sandbox_linux/bpf_renderer_policy_linux.cc',
664 'common/sandbox_linux/bpf_renderer_policy_linux.h', 670 'common/sandbox_linux/bpf_renderer_policy_linux.h',
665 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc', 671 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc',
666 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h', 672 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h',
667 ], 673 ],
668 }, { 674 }, {
669 'defines': ['USE_SECCOMP_BPF'], 675 'defines': ['USE_SECCOMP_BPF'],
670 }], 676 }],
671 ], 677 ],
672 } 678 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698