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

Unified Diff: content/content_common.gypi

Issue 6793054: Moved code that runs in both the browser and GPU process from content/gpu to content/common/gpu. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/common/gpu_messages.h ('k') | content/content_gpu.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/content_common.gypi
===================================================================
--- content/content_common.gypi (revision 80399)
+++ content/content_common.gypi (working copy)
@@ -13,6 +13,7 @@
'../third_party/icu/icu.gyp:icuuc',
'../third_party/npapi/npapi.gyp:npapi',
'../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
+ '../ui/gfx/gl/gl.gyp:gl',
'../webkit/support/webkit_support.gyp:appcache',
'../webkit/support/webkit_support.gyp:blob',
'../webkit/support/webkit_support.gyp:database',
@@ -98,8 +99,25 @@
'common/geolocation_messages.h',
'common/geoposition.cc',
'common/geoposition.h',
- 'common/gpu_info.cc',
- 'common/gpu_info.h',
+ 'common/gpu/content_gpu_client.h',
+ 'common/gpu/gpu_channel.cc',
+ 'common/gpu/gpu_channel.h',
+ 'common/gpu/gpu_channel_manager.cc',
+ 'common/gpu/gpu_channel_manager.h',
+ 'common/gpu/gpu_command_buffer_stub.cc',
+ 'common/gpu/gpu_command_buffer_stub.h',
+ 'common/gpu/gpu_config.h',
+ 'common/gpu/gpu_info.cc',
+ 'common/gpu/gpu_info.h',
+ 'common/gpu/gpu_video_decoder.cc',
+ 'common/gpu/gpu_video_decoder.h',
+ 'common/gpu/gpu_video_service.cc',
+ 'common/gpu/gpu_video_service.h',
+ 'common/gpu/media/gpu_video_device.h',
+ 'common/gpu/media/fake_gl_video_decode_engine.cc',
+ 'common/gpu/media/fake_gl_video_decode_engine.h',
+ 'common/gpu/media/fake_gl_video_device.cc',
+ 'common/gpu/media/fake_gl_video_device.h',
'common/gpu_messages.h',
'common/hi_res_timer_manager_posix.cc',
'common/hi_res_timer_manager_win.cc',
@@ -194,6 +212,20 @@
'conditions': [
['OS=="win"', {
'msvs_guid': '062E9260-304A-4657-A74C-0D3AA1A0A0A4',
+ 'sources': [
+ 'common/gpu/media/mft_angle_video_device.cc',
+ 'common/gpu/media/mft_angle_video_device.h',
+ ],
+ 'include_dirs': [
+ '<(DEPTH)/third_party/angle/include',
+ '<(DEPTH)/third_party/angle/src',
+ '<(DEPTH)/third_party/wtl/include',
+ '$(DXSDK_DIR)/include',
+ ],
+ 'dependencies': [
+ '../third_party/angle/src/build_angle.gyp:libEGL',
+ '../third_party/angle/src/build_angle.gyp:libGLESv2',
+ ],
}],
['OS!="linux"', {
'sources!': [
@@ -220,11 +252,22 @@
'../build/linux/system.gyp:gtk',
],
}],
+ ['OS=="linux" and target_arch!="arm"', {
+ 'sources': [
+ 'common/gpu/x_util.cc',
+ 'common/gpu/x_util.h',
+ ],
+ }],
['toolkit_views==1', {
'sources': [
'common/native_web_keyboard_event_views.cc',
],
}],
+ ['enable_gpu==1', {
+ 'dependencies': [
+ '../gpu/gpu.gyp:command_buffer_service',
+ ],
+ }],
],
},
],
« no previous file with comments | « content/common/gpu_messages.h ('k') | content/content_gpu.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698