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

Side by Side Diff: gpu/gpu.gyp

Issue 12261007: Make gpu static and release builds work on Win64 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 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 | « no previous file | no next file » | 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': { 6 'variables': {
7 'nacl_win64_target': 0, 7 'nacl_win64_target': 0,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'gpu_common.gypi', 10 'gpu_common.gypi',
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 { 316 {
317 # Library helps make GLES2 command buffers. 317 # Library helps make GLES2 command buffers.
318 'target_name': 'gles2_cmd_helper', 318 'target_name': 'gles2_cmd_helper',
319 'type': 'static_library', 319 'type': 'static_library',
320 'includes': [ 320 'includes': [
321 'gles2_cmd_helper.gypi', 321 'gles2_cmd_helper.gypi',
322 ], 322 ],
323 'dependencies': [ 323 'dependencies': [
324 'command_buffer_client', 324 'command_buffer_client',
325 ], 325 ],
326 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
327 'msvs_disabled_warnings': [4267, ],
326 }, 328 },
327 { 329 {
328 'target_name': 'command_buffer_client', 330 'target_name': 'command_buffer_client',
329 'type': 'static_library', 331 'type': 'static_library',
330 'includes': [ 332 'includes': [
331 'command_buffer_client.gypi', 333 'command_buffer_client.gypi',
332 ], 334 ],
333 'dependencies': [ 335 'dependencies': [
334 'command_buffer_common', 336 'command_buffer_common',
335 ], 337 ],
338 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
339 'msvs_disabled_warnings': [4267, ],
336 }, 340 },
337 { 341 {
338 'target_name': 'command_buffer_service', 342 'target_name': 'command_buffer_service',
339 'type': 'static_library', 343 'type': 'static_library',
340 'includes': [ 344 'includes': [
341 'command_buffer_service.gypi', 345 'command_buffer_service.gypi',
342 ], 346 ],
343 'dependencies': [ 347 'dependencies': [
344 'command_buffer_common', 348 'command_buffer_common',
345 ], 349 ],
350 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
351 'msvs_disabled_warnings': [4267, ],
346 }, 352 },
347 { 353 {
348 'target_name': 'gpu_ipc', 354 'target_name': 'gpu_ipc',
349 'type': 'static_library', 355 'type': 'static_library',
350 'includes': [ 356 'includes': [
351 'gpu_ipc.gypi', 357 'gpu_ipc.gypi',
352 ], 358 ],
353 'dependencies': [ 359 'dependencies': [
354 'command_buffer_common', 360 'command_buffer_common',
355 ], 361 ],
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 'gpu', 394 'gpu',
389 ], 395 ],
390 }, 396 },
391 { 397 {
392 # Library helps make GLES2 command buffers. 398 # Library helps make GLES2 command buffers.
393 'target_name': 'gles2_cmd_helper', 399 'target_name': 'gles2_cmd_helper',
394 'type': 'none', 400 'type': 'none',
395 'dependencies': [ 401 'dependencies': [
396 'gpu', 402 'gpu',
397 ], 403 ],
404 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
405 'msvs_disabled_warnings': [4267, ],
398 }, 406 },
399 { 407 {
400 'target_name': 'command_buffer_client', 408 'target_name': 'command_buffer_client',
401 'type': 'none', 409 'type': 'none',
402 'dependencies': [ 410 'dependencies': [
403 'gpu', 411 'gpu',
404 ], 412 ],
405 }, 413 },
406 { 414 {
407 'target_name': 'command_buffer_service', 415 'target_name': 'command_buffer_service',
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
441 'configurations': { 449 'configurations': {
442 'Common_Base': { 450 'Common_Base': {
443 'msvs_target_platform': 'x64', 451 'msvs_target_platform': 'x64',
444 }, 452 },
445 }, 453 },
446 }, 454 },
447 ], 455 ],
448 }], 456 }],
449 ], 457 ],
450 } 458 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698