| Index: gpu/gpu.gyp
|
| diff --git a/gpu/gpu.gyp b/gpu/gpu.gyp
|
| index acb3b68e65e2485cd7234b1ab42e1c25c659840e..712f7aab22d03616fa6a6df1b4d974c5af92ce8e 100644
|
| --- a/gpu/gpu.gyp
|
| +++ b/gpu/gpu.gyp
|
| @@ -3,6 +3,9 @@
|
| # found in the LICENSE file.
|
|
|
| {
|
| + 'variables': {
|
| + 'nacl_win64_target': 0,
|
| + },
|
| 'includes': [
|
| 'gpu_common.gypi',
|
| ],
|
| @@ -407,5 +410,32 @@
|
| },
|
| ],
|
| }],
|
| + ['disable_nacl!=1' and 'OS=="win"', {
|
| + 'targets': [
|
| + {
|
| + 'target_name': 'gpu_ipc_win64',
|
| + 'type': 'static_library',
|
| + 'variables': {
|
| + 'nacl_win64_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',
|
| + },
|
| + },
|
| + },
|
| + ],
|
| + }],
|
| ],
|
| }
|
|
|