Chromium Code Reviews| 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 '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 Loading... | |
| 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 Loading... | |
| 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 } |
| OLD | NEW |