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

Unified Diff: gpu/gpu.gyp

Issue 298023004: [PPAPI] Compositor API implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@compositor_api_def_new
Patch Set: Fix build issue on windowswq Created 6 years, 6 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 773182516e3b077b04a41467ae9d29f87aaf40c4..7d0695e10896c6941b9a0ead4bc0e9c057c15e45 100644
--- a/gpu/gpu.gyp
+++ b/gpu/gpu.gyp
@@ -567,6 +567,28 @@
['disable_nacl!=1 and OS=="win" and target_arch=="ia32"', {
'targets': [
{
+ 'target_name': 'command_buffer_common_win64',
+ 'type': 'static_library',
+ 'variables': {
+ 'nacl_win64_target': 1,
+ },
+ 'includes': [
+ 'command_buffer_common.gypi',
+ ],
+ 'dependencies': [
+ '../base/base.gyp:base_win64',
+ ],
+ 'defines': [
+ '<@(nacl_win64_defines)',
+ 'GPU_IMPLEMENTATION',
+ ],
+ 'configurations': {
+ 'Common_Base': {
+ 'msvs_target_platform': 'x64',
+ },
+ },
+ },
+ {
'target_name': 'gpu_ipc_win64',
'type': 'static_library',
'variables': {
@@ -578,6 +600,7 @@
'dependencies': [
'../base/base.gyp:base_win64',
'../ipc/ipc.gyp:ipc_win64',
+ 'command_buffer_common_win64',
],
'defines': [
'<@(nacl_win64_defines)',

Powered by Google App Engine
This is Rietveld 408576698