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 11 matching lines...) Expand all Loading... |
22 '../ui/gl/gl.gyp:gl', | 22 '../ui/gl/gl.gyp:gl', |
23 'command_buffer/command_buffer.gyp:gles2_utils', | 23 'command_buffer/command_buffer.gyp:gles2_utils', |
24 'gles2_cmd_helper', | 24 'gles2_cmd_helper', |
25 ], | 25 ], |
26 'defines': [ | 26 'defines': [ |
27 'GLES2_IMPL_IMPLEMENTATION', | 27 'GLES2_IMPL_IMPLEMENTATION', |
28 ], | 28 ], |
29 'sources': [ | 29 'sources': [ |
30 '<@(gles2_implementation_source_files)', | 30 '<@(gles2_implementation_source_files)', |
31 ], | 31 ], |
| 32 'includes': [ |
| 33 # Disable LTO due to ELF section name out of range |
| 34 # crbug.com/422251 |
| 35 '../build/android/disable_lto.gypi', |
| 36 ], |
32 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 37 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
33 'msvs_disabled_warnings': [4267, ], | 38 'msvs_disabled_warnings': [4267, ], |
34 }, | 39 }, |
35 { | 40 { |
36 # GN version: //gpu/command_buffer/client:gl_in_process_context | 41 # GN version: //gpu/command_buffer/client:gl_in_process_context |
37 'target_name': 'gl_in_process_context', | 42 'target_name': 'gl_in_process_context', |
38 'type': '<(component)', | 43 'type': '<(component)', |
39 'dependencies': [ | 44 'dependencies': [ |
40 'command_buffer/command_buffer.gyp:gles2_utils', | 45 'command_buffer/command_buffer.gyp:gles2_utils', |
41 'gles2_implementation', | 46 'gles2_implementation', |
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
472 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 477 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
473 'msvs_disabled_warnings': [4267, ], | 478 'msvs_disabled_warnings': [4267, ], |
474 }, | 479 }, |
475 { | 480 { |
476 # GN version: //gpu/command_buffer/service | 481 # GN version: //gpu/command_buffer/service |
477 'target_name': 'command_buffer_service', | 482 'target_name': 'command_buffer_service', |
478 'type': 'static_library', | 483 'type': 'static_library', |
479 'includes': [ | 484 'includes': [ |
480 'command_buffer_service.gypi', | 485 'command_buffer_service.gypi', |
481 '../build/android/increase_size_for_speed.gypi', | 486 '../build/android/increase_size_for_speed.gypi', |
| 487 # Disable LTO due to ELF section name out of range |
| 488 # crbug.com/422251 |
| 489 '../build/android/disable_lto.gypi', |
482 ], | 490 ], |
483 'dependencies': [ | 491 'dependencies': [ |
484 'command_buffer_common', | 492 'command_buffer_common', |
485 'disk_cache_proto', | 493 'disk_cache_proto', |
486 ], | 494 ], |
487 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 495 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
488 'msvs_disabled_warnings': [4267, ], | 496 'msvs_disabled_warnings': [4267, ], |
489 }, | 497 }, |
490 { | 498 { |
491 # GN version: //gpu/ipc | 499 # GN version: //gpu/ipc |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
665 ], | 673 ], |
666 'variables': { | 674 'variables': { |
667 'test_suite_name': 'gpu_unittests', | 675 'test_suite_name': 'gpu_unittests', |
668 }, | 676 }, |
669 'includes': [ '../build/apk_test.gypi' ], | 677 'includes': [ '../build/apk_test.gypi' ], |
670 }, | 678 }, |
671 ], | 679 ], |
672 }], | 680 }], |
673 ], | 681 ], |
674 } | 682 } |
OLD | NEW |