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 # IMPORTANT: | 5 # IMPORTANT: |
6 # Please don't directly include this file if you are building via gyp_chromium, | 6 # Please don't directly include this file if you are building via gyp_chromium, |
7 # since gyp_chromium is automatically forcing its inclusion. | 7 # since gyp_chromium is automatically forcing its inclusion. |
8 { | 8 { |
9 # Variables expected to be overriden on the GYP command line (-D) or by | 9 # Variables expected to be overriden on the GYP command line (-D) or by |
10 # ~/.gyp/include.gypi. | 10 # ~/.gyp/include.gypi. |
(...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
798 # And if we want to dump symbols for Breakpad-enabled builds. | 798 # And if we want to dump symbols for Breakpad-enabled builds. |
799 'linux_dump_symbols%': 0, | 799 'linux_dump_symbols%': 0, |
800 # And if we want to strip the binary after dumping symbols. | 800 # And if we want to strip the binary after dumping symbols. |
801 'linux_strip_binary%': 0, | 801 'linux_strip_binary%': 0, |
802 # Strip the test binaries needed for Linux reliability tests. | 802 # Strip the test binaries needed for Linux reliability tests. |
803 'linux_strip_reliability_tests%': 0, | 803 'linux_strip_reliability_tests%': 0, |
804 | 804 |
805 # Enable TCMalloc. | 805 # Enable TCMalloc. |
806 'linux_use_tcmalloc%': 1, | 806 'linux_use_tcmalloc%': 1, |
807 | 807 |
| 808 # Disable TCMalloc's debugallocation. |
| 809 'linux_use_debugallocation%': 0, |
| 810 |
808 # Disable TCMalloc's heapchecker. | 811 # Disable TCMalloc's heapchecker. |
809 'linux_use_heapchecker%': 0, | 812 'linux_use_heapchecker%': 0, |
810 | 813 |
811 # Disable shadow stack keeping used by heapcheck to unwind the stacks | 814 # Disable shadow stack keeping used by heapcheck to unwind the stacks |
812 # better. | 815 # better. |
813 'linux_keep_shadow_stacks%': 0, | 816 'linux_keep_shadow_stacks%': 0, |
814 | 817 |
815 # Set to 1 to link against libgnome-keyring instead of using dlopen(). | 818 # Set to 1 to link against libgnome-keyring instead of using dlopen(). |
816 'linux_link_gnome_keyring%': 0, | 819 'linux_link_gnome_keyring%': 0, |
817 # Set to 1 to link against gsettings APIs instead of using dlopen(). | 820 # Set to 1 to link against gsettings APIs instead of using dlopen(). |
(...skipping 2918 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3736 # settings in target dicts. SYMROOT is a special case, because many other | 3739 # settings in target dicts. SYMROOT is a special case, because many other |
3737 # Xcode variables depend on it, including variables such as | 3740 # Xcode variables depend on it, including variables such as |
3738 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3741 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3739 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3742 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3740 # files to appear (when present) in the UI as actual files and not red | 3743 # files to appear (when present) in the UI as actual files and not red |
3741 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3744 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
3742 # and therefore SYMROOT, needs to be set at the project level. | 3745 # and therefore SYMROOT, needs to be set at the project level. |
3743 'SYMROOT': '<(DEPTH)/xcodebuild', | 3746 'SYMROOT': '<(DEPTH)/xcodebuild', |
3744 }, | 3747 }, |
3745 } | 3748 } |
OLD | NEW |