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

Side by Side Diff: third_party/mesa/mesa.gyp

Issue 1833263002: Disable incremental linking for gn osmesa (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « third_party/mesa/BUILD.gn ('k') | 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 'generated_src_dir': 'src/chromium_gensrc', 7 'generated_src_dir': 'src/chromium_gensrc',
8 }, 8 },
9 'target_defaults': { 9 'target_defaults': {
10 'defines': [ 10 'defines': [
(...skipping 668 matching lines...) Expand 10 before | Expand all | Expand 10 after
679 'mesa_headers', 679 'mesa_headers',
680 'mesa', 680 'mesa',
681 ], 681 ],
682 'xcode_settings': { 682 'xcode_settings': {
683 'OTHER_LDFLAGS': [ 683 'OTHER_LDFLAGS': [
684 '-lstdc++', 684 '-lstdc++',
685 ], 685 ],
686 }, 686 },
687 'conditions': [ 687 'conditions': [
688 ['OS=="win"', { 688 ['OS=="win"', {
689 'variables': {
690 # Disable incremental linking for all modules to avoid linker crash.
691 # TODO(brucedawson) : remove when crbug.com/482671 is resolved by
692 # Microsoft.
693 # 0: inherit, 1: disabled, 2: enabled.
694 'msvs_debug_link_incremental': '1',
scottmg 2016/03/29 17:03:43 I don't know what that variable is supposed to do.
695 },
689 'defines': [ 696 'defines': [
690 'BUILD_GL32', 697 'BUILD_GL32',
691 'KEYWORD1=GLAPI', 698 'KEYWORD1=GLAPI',
692 'KEYWORD2=GLAPIENTRY', 699 'KEYWORD2=GLAPIENTRY',
693 ], 700 ],
694 }], 701 }],
695 ['OS=="linux"', { 702 ['OS=="linux"', {
696 'link_settings': { 703 'link_settings': {
697 'libraries': [ 704 'libraries': [
698 '-ldl', 705 '-ldl',
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
784 'direct_dependent_settings': { 791 'direct_dependent_settings': {
785 'include_dirs': [ 792 'include_dirs': [
786 '<(generated_src_dir)/egl/wayland/wayland-drm', 793 '<(generated_src_dir)/egl/wayland/wayland-drm',
787 ], 794 ],
788 }, 795 },
789 }, 796 },
790 ], 797 ],
791 }], 798 }],
792 ], 799 ],
793 } 800 }
OLDNEW
« no previous file with comments | « third_party/mesa/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698