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

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: 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 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
471 'sources!': [ 473 'sources!': [
472 'common/plugin_list_posix.cc', 474 'common/plugin_list_posix.cc',
473 ], 475 ],
474 'link_settings': { 476 'link_settings': {
475 'libraries': [ 477 'libraries': [
476 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', 478 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
477 ], 479 ],
478 }, 480 },
479 }], 481 }],
480 ['OS=="android"',{ 482 ['OS=="android"',{
483 'sources': [
484 'common/gpu/client/gpu_memory_buffer_impl_surface_texture.cc',
485 'common/gpu/client/gpu_memory_buffer_impl_surface_texture.h',
486 ],
481 'link_settings': { 487 'link_settings': {
482 'libraries': [ 488 'libraries': [
483 '-landroid', # ANativeWindow 489 '-landroid', # ANativeWindow
484 ], 490 ],
485 }, 491 },
486 'dependencies': [ 492 'dependencies': [
487 'content.gyp:content_jni_headers', 493 'content.gyp:content_jni_headers',
488 'content.gyp:common_aidl', 494 'content.gyp:common_aidl',
489 ], 495 ],
490 }], 496 }],
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
652 'common/sandbox_linux/bpf_renderer_policy_linux.cc', 658 'common/sandbox_linux/bpf_renderer_policy_linux.cc',
653 'common/sandbox_linux/bpf_renderer_policy_linux.h', 659 'common/sandbox_linux/bpf_renderer_policy_linux.h',
654 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc', 660 'common/sandbox_linux/sandbox_bpf_base_policy_linux.cc',
655 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h', 661 'common/sandbox_linux/sandbox_bpf_base_policy_linux.h',
656 ], 662 ],
657 }, { 663 }, {
658 'defines': ['USE_SECCOMP_BPF'], 664 'defines': ['USE_SECCOMP_BPF'],
659 }], 665 }],
660 ], 666 ],
661 } 667 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698