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 812 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
823 # And if we want to dump symbols for Breakpad-enabled builds. | 823 # And if we want to dump symbols for Breakpad-enabled builds. |
824 'linux_dump_symbols%': 0, | 824 'linux_dump_symbols%': 0, |
825 # And if we want to strip the binary after dumping symbols. | 825 # And if we want to strip the binary after dumping symbols. |
826 'linux_strip_binary%': 0, | 826 'linux_strip_binary%': 0, |
827 # Strip the test binaries needed for Linux reliability tests. | 827 # Strip the test binaries needed for Linux reliability tests. |
828 'linux_strip_reliability_tests%': 0, | 828 'linux_strip_reliability_tests%': 0, |
829 | 829 |
830 # Enable TCMalloc. | 830 # Enable TCMalloc. |
831 'linux_use_tcmalloc%': 1, | 831 'linux_use_tcmalloc%': 1, |
832 | 832 |
833 # Disable TCMalloc's debugallocation. | |
834 'linux_use_debugallocation%': 0, | |
835 | |
836 # Disable TCMalloc's heapchecker. | 833 # Disable TCMalloc's heapchecker. |
837 'linux_use_heapchecker%': 0, | 834 'linux_use_heapchecker%': 0, |
838 | 835 |
839 # Disable shadow stack keeping used by heapcheck to unwind the stacks | 836 # Disable shadow stack keeping used by heapcheck to unwind the stacks |
840 # better. | 837 # better. |
841 'linux_keep_shadow_stacks%': 0, | 838 'linux_keep_shadow_stacks%': 0, |
842 | 839 |
843 # Set to 1 to link against libgnome-keyring instead of using dlopen(). | 840 # Set to 1 to link against libgnome-keyring instead of using dlopen(). |
844 'linux_link_gnome_keyring%': 0, | 841 'linux_link_gnome_keyring%': 0, |
845 # Set to 1 to link against gsettings APIs instead of using dlopen(). | 842 # Set to 1 to link against gsettings APIs instead of using dlopen(). |
(...skipping 3058 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3904 # settings in target dicts. SYMROOT is a special case, because many other | 3901 # settings in target dicts. SYMROOT is a special case, because many other |
3905 # Xcode variables depend on it, including variables such as | 3902 # Xcode variables depend on it, including variables such as |
3906 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3903 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3907 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3904 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3908 # files to appear (when present) in the UI as actual files and not red | 3905 # files to appear (when present) in the UI as actual files and not red |
3909 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3906 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
3910 # and therefore SYMROOT, needs to be set at the project level. | 3907 # and therefore SYMROOT, needs to be set at the project level. |
3911 'SYMROOT': '<(DEPTH)/xcodebuild', | 3908 'SYMROOT': '<(DEPTH)/xcodebuild', |
3912 }, | 3909 }, |
3913 } | 3910 } |
OLD | NEW |