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

Unified Diff: gpu/gpu.gyp

Issue 10828023: PPAPI/NaCl: Make NaClIPCAdapter transfer handles more generally (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ready for review? Created 8 years, 4 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
Index: gpu/gpu.gyp
diff --git a/gpu/gpu.gyp b/gpu/gpu.gyp
index acb3b68e65e2485cd7234b1ab42e1c25c659840e..e62745598ce95f537030a8f1c06894ba642440bd 100644
--- a/gpu/gpu.gyp
+++ b/gpu/gpu.gyp
@@ -3,6 +3,9 @@
# found in the LICENSE file.
{
+ 'variables': {
+ 'nacl_target': 0,
+ },
'includes': [
'gpu_common.gypi',
],
@@ -407,5 +410,32 @@
},
],
}],
+ ['disable_nacl!=1' and 'OS=="win"', {
+ 'targets': [
+ {
+ 'target_name': 'gpu_ipc_win64',
+ 'type': '<(component)',
+ 'variables': {
+ 'nacl_target': 1,
+ },
+ 'includes': [
+ 'gpu_ipc.gypi',
+ ],
+ 'dependencies': [
+ '../base/base.gyp:base_nacl_win64',
+ '../ipc/ipc.gyp:ipc_win64',
+ ],
+ 'defines': [
+ '<@(nacl_win64_defines)',
+ 'GPU_IMPLEMENTATION',
+ ],
+ 'configurations': {
+ 'Common_Base': {
+ 'msvs_target_platform': 'x64',
+ },
+ },
+ },
+ ],
+ }],
],
}

Powered by Google App Engine
This is Rietveld 408576698