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

Side by Side Diff: content/content_common.gypi

Issue 1134993003: ozone: Implement zero/one-copy texture for Ozone GBM. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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
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 1038 matching lines...) Expand 10 before | Expand all | Expand 10 after
1049 'common/cursors/webcursor_ozone.cc', 1049 'common/cursors/webcursor_ozone.cc',
1050 'common/font_list_ozone.cc', 1050 'common/font_list_ozone.cc',
1051 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc', 1051 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc',
1052 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc', 1052 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc',
1053 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h', 1053 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h',
1054 'common/gpu/gpu_memory_buffer_factory_ozone.cc', 1054 'common/gpu/gpu_memory_buffer_factory_ozone.cc',
1055 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.cc', 1055 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.cc',
1056 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.h', 1056 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.h',
1057 ], 1057 ],
1058 }], 1058 }],
1059 ['ozone_platform_gbm==1', {
1060 'defines': ['USE_OZONE_GBM'],
1061 'dependencies': [
1062 '../build/linux/system.gyp:libdrm',
1063 ],
1064 'sources': [
1065 'common/gpu/client/gpu_memory_buffer_impl_ozone_gbm.cc',
1066 'common/gpu/client/gpu_memory_buffer_impl_ozone_gbm.h',
1067 ],
1068 }],
1059 ], 1069 ],
1060 } 1070 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698