| OLD | NEW |
| 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 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 471 ], | 471 ], |
| 472 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 472 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 473 'msvs_disabled_warnings': [4267, ], | 473 'msvs_disabled_warnings': [4267, ], |
| 474 }, | 474 }, |
| 475 { | 475 { |
| 476 # GN version: //gpu/command_buffer/service | 476 # GN version: //gpu/command_buffer/service |
| 477 'target_name': 'command_buffer_service', | 477 'target_name': 'command_buffer_service', |
| 478 'type': 'static_library', | 478 'type': 'static_library', |
| 479 'includes': [ | 479 'includes': [ |
| 480 'command_buffer_service.gypi', | 480 'command_buffer_service.gypi', |
| 481 '../build/android/increase_size_for_speed.gypi', |
| 481 ], | 482 ], |
| 482 'dependencies': [ | 483 'dependencies': [ |
| 483 'command_buffer_common', | 484 'command_buffer_common', |
| 484 'disk_cache_proto', | 485 'disk_cache_proto', |
| 485 ], | 486 ], |
| 486 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 487 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 487 'msvs_disabled_warnings': [4267, ], | 488 'msvs_disabled_warnings': [4267, ], |
| 488 }, | 489 }, |
| 489 { | 490 { |
| 490 # GN version: //gpu/ipc | 491 # GN version: //gpu/ipc |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 523 # GN version: //gpu | 524 # GN version: //gpu |
| 524 'target_name': 'gpu', | 525 'target_name': 'gpu', |
| 525 'type': 'shared_library', | 526 'type': 'shared_library', |
| 526 'includes': [ | 527 'includes': [ |
| 527 'command_buffer_client.gypi', | 528 'command_buffer_client.gypi', |
| 528 'command_buffer_common.gypi', | 529 'command_buffer_common.gypi', |
| 529 'command_buffer_service.gypi', | 530 'command_buffer_service.gypi', |
| 530 'gles2_cmd_helper.gypi', | 531 'gles2_cmd_helper.gypi', |
| 531 'gpu_config.gypi', | 532 'gpu_config.gypi', |
| 532 'gpu_ipc.gypi', | 533 'gpu_ipc.gypi', |
| 534 '../build/android/increase_size_for_speed.gypi', |
| 533 ], | 535 ], |
| 534 'defines': [ | 536 'defines': [ |
| 535 'GPU_IMPLEMENTATION', | 537 'GPU_IMPLEMENTATION', |
| 536 ], | 538 ], |
| 537 'sources': [ | 539 'sources': [ |
| 538 'gpu_export.h', | 540 'gpu_export.h', |
| 539 ], | 541 ], |
| 540 'dependencies': [ | 542 'dependencies': [ |
| 541 '../base/base.gyp:base', | 543 '../base/base.gyp:base', |
| 542 'command_buffer/command_buffer.gyp:gles2_utils', | 544 'command_buffer/command_buffer.gyp:gles2_utils', |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 663 ], | 665 ], |
| 664 'variables': { | 666 'variables': { |
| 665 'test_suite_name': 'gpu_unittests', | 667 'test_suite_name': 'gpu_unittests', |
| 666 }, | 668 }, |
| 667 'includes': [ '../build/apk_test.gypi' ], | 669 'includes': [ '../build/apk_test.gypi' ], |
| 668 }, | 670 }, |
| 669 ], | 671 ], |
| 670 }], | 672 }], |
| 671 ], | 673 ], |
| 672 } | 674 } |
| OLD | NEW |