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

Unified Diff: gpu/gpu.gyp

Issue 1809183002: gpu_messages.h => gpu/ipc/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make win_clang_x64_dbg happy by making command_buffer_traits an alias to gpu component on compnet b… Created 4 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 | « gpu/command_buffer_traits.gypi ('k') | gpu/gpu_ipc_common.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/gpu.gyp
diff --git a/gpu/gpu.gyp b/gpu/gpu.gyp
index 1bd8d2f6e50579996b6781cf721a0257a57acf63..9de9370deb2a1472329895cd492473c9b25df940 100644
--- a/gpu/gpu.gyp
+++ b/gpu/gpu.gyp
@@ -594,12 +594,23 @@
'msvs_disabled_warnings': [4267, ],
},
{
+ # GN version: //gpu/ipc/common:command_buffer_traits
+ 'target_name': 'command_buffer_traits',
+ 'type': 'static_library',
+ 'includes': [
+ 'command_buffer_traits.gypi',
+ ],
+ },
+ {
# GN version: //gpu/ipc/common
'target_name': 'gpu_ipc_common',
'type': 'static_library',
'includes': [
'gpu_ipc_common.gypi',
],
+ 'dependencies': [
+ 'command_buffer_traits',
+ ],
},
{
'target_name': 'gpu_config',
@@ -631,6 +642,7 @@
'command_buffer_client.gypi',
'command_buffer_common.gypi',
'command_buffer_service.gypi',
+ 'command_buffer_traits.gypi',
'gles2_cmd_helper.gypi',
'gpu_config.gypi',
'gpu_ipc_common.gypi',
@@ -686,6 +698,14 @@
],
},
{
+ # GN version: //gpu/ipc/common:command_buffer_traits
+ 'target_name': 'command_buffer_traits',
+ 'type': 'none',
+ 'dependencies': [
+ 'gpu',
+ ],
+ },
+ {
# GN version: //gpu/ipc/common
'target_name': 'gpu_ipc_common',
'type': 'none',
@@ -720,12 +740,37 @@
},
},
{
+ 'target_name': 'command_buffer_traits_win64',
+ 'type': 'static_library',
+ 'variables': {
+ 'nacl_win64_target': 1,
+ },
+ 'includes': [
+ 'command_buffer_traits.gypi',
+ ],
+ 'dependencies': [
+ '../base/base.gyp:base_win64',
+ '../ipc/ipc.gyp:ipc_win64',
+ 'command_buffer_common_win64',
+ ],
+ 'defines': [
+ '<@(nacl_win64_defines)',
+ 'GPU_IMPLEMENTATION',
+ ],
+ 'configurations': {
+ 'Common_Base': {
+ 'msvs_target_platform': 'x64',
+ },
+ },
+ },
+ {
'target_name': 'gpu_ipc_common_win64',
'type': 'static_library',
'variables': {
'nacl_win64_target': 1,
},
'includes': [
+ 'command_buffer_traits.gypi',
'gpu_ipc_common.gypi',
],
'dependencies': [
« no previous file with comments | « gpu/command_buffer_traits.gypi ('k') | gpu/gpu_ipc_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698