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

Side by Side 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: re-add gyp files Created 8 years, 3 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « gpu/command_buffer/common/command_buffer.h ('k') | gpu/gpu_export.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': {
7 'nacl_win64_target': 0,
8 },
6 'includes': [ 9 'includes': [
7 'gpu_common.gypi', 10 'gpu_common.gypi',
8 ], 11 ],
9 'targets': [ 12 'targets': [
10 { 13 {
11 # Library emulates GLES2 using command_buffers. 14 # Library emulates GLES2 using command_buffers.
12 'target_name': 'gles2_implementation', 15 'target_name': 'gles2_implementation',
13 'type': '<(component)', 16 'type': '<(component)',
14 'dependencies': [ 17 'dependencies': [
15 '../base/base.gyp:base', 18 '../base/base.gyp:base',
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 }, 403 },
401 { 404 {
402 'target_name': 'gpu_ipc', 405 'target_name': 'gpu_ipc',
403 'type': 'none', 406 'type': 'none',
404 'dependencies': [ 407 'dependencies': [
405 'gpu', 408 'gpu',
406 ], 409 ],
407 }, 410 },
408 ], 411 ],
409 }], 412 }],
413 ['disable_nacl!=1' and 'OS=="win"', {
414 'targets': [
415 {
416 'target_name': 'gpu_ipc_win64',
417 'type': 'static_library',
418 'variables': {
419 'nacl_win64_target': 1,
420 },
421 'includes': [
422 'gpu_ipc.gypi',
423 ],
424 'dependencies': [
425 '../base/base.gyp:base_nacl_win64',
426 '../ipc/ipc.gyp:ipc_win64',
427 ],
428 'defines': [
429 '<@(nacl_win64_defines)',
430 'GPU_IMPLEMENTATION',
431 ],
432 'configurations': {
433 'Common_Base': {
434 'msvs_target_platform': 'x64',
435 },
436 },
437 },
438 ],
439 }],
410 ], 440 ],
411 } 441 }
OLDNEW
« no previous file with comments | « gpu/command_buffer/common/command_buffer.h ('k') | gpu/gpu_export.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698