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

Side by Side Diff: content/content_common.gypi

Issue 1071273002: NotForReview: Implement zero/one-copy texture for ozone freon using Intel DRM Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 1034 matching lines...) Expand 10 before | Expand all | Expand 10 after
1045 'common/cursors/webcursor_ozone.cc', 1045 'common/cursors/webcursor_ozone.cc',
1046 'common/font_list_ozone.cc', 1046 'common/font_list_ozone.cc',
1047 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc', 1047 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc',
1048 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc', 1048 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.cc',
1049 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h', 1049 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_buffer.h',
1050 'common/gpu/gpu_memory_buffer_factory_ozone.cc', 1050 'common/gpu/gpu_memory_buffer_factory_ozone.cc',
1051 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.cc', 1051 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.cc',
1052 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.h', 1052 'common/gpu/gpu_memory_buffer_factory_ozone_native_buffer.h',
1053 ], 1053 ],
1054 }], 1054 }],
1055 ['ozone_platform_gbm==1 and (target_arch=="ia32" or target_arch=="x64")', {
1056 'defines': ['USE_OZONE_GBM_INTEL'],
1057 'dependencies': [
1058 '../build/linux/system.gyp:libdrm_intel',
1059 ],
1060 'sources': [
1061 'common/gpu/client/gpu_memory_buffer_impl_ozone_gbm_intel.cc',
1062 'common/gpu/client/gpu_memory_buffer_impl_ozone_gbm_intel.h',
1063 ],
1064 }],
1055 ], 1065 ],
1056 } 1066 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698