| 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 774 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 785 # And if we want to dump symbols for Breakpad-enabled builds. | 785 # And if we want to dump symbols for Breakpad-enabled builds. |
| 786 'linux_dump_symbols%': 0, | 786 'linux_dump_symbols%': 0, |
| 787 # And if we want to strip the binary after dumping symbols. | 787 # And if we want to strip the binary after dumping symbols. |
| 788 'linux_strip_binary%': 0, | 788 'linux_strip_binary%': 0, |
| 789 # Strip the test binaries needed for Linux reliability tests. | 789 # Strip the test binaries needed for Linux reliability tests. |
| 790 'linux_strip_reliability_tests%': 0, | 790 'linux_strip_reliability_tests%': 0, |
| 791 | 791 |
| 792 # Enable TCMalloc. | 792 # Enable TCMalloc. |
| 793 'linux_use_tcmalloc%': 1, | 793 'linux_use_tcmalloc%': 1, |
| 794 | 794 |
| 795 # Disable TCMalloc's debugallocation. |
| 796 'linux_use_debugallocation%': 0, |
| 797 |
| 795 # Disable TCMalloc's heapchecker. | 798 # Disable TCMalloc's heapchecker. |
| 796 'linux_use_heapchecker%': 0, | 799 'linux_use_heapchecker%': 0, |
| 797 | 800 |
| 798 # Disable shadow stack keeping used by heapcheck to unwind the stacks | 801 # Disable shadow stack keeping used by heapcheck to unwind the stacks |
| 799 # better. | 802 # better. |
| 800 'linux_keep_shadow_stacks%': 0, | 803 'linux_keep_shadow_stacks%': 0, |
| 801 | 804 |
| 802 # Set to 1 to link against libgnome-keyring instead of using dlopen(). | 805 # Set to 1 to link against libgnome-keyring instead of using dlopen(). |
| 803 'linux_link_gnome_keyring%': 0, | 806 'linux_link_gnome_keyring%': 0, |
| 804 # Set to 1 to link against gsettings APIs instead of using dlopen(). | 807 # Set to 1 to link against gsettings APIs instead of using dlopen(). |
| (...skipping 2864 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3669 # settings in target dicts. SYMROOT is a special case, because many other | 3672 # settings in target dicts. SYMROOT is a special case, because many other |
| 3670 # Xcode variables depend on it, including variables such as | 3673 # Xcode variables depend on it, including variables such as |
| 3671 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3674 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 3672 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3675 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 3673 # files to appear (when present) in the UI as actual files and not red | 3676 # files to appear (when present) in the UI as actual files and not red |
| 3674 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3677 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 3675 # and therefore SYMROOT, needs to be set at the project level. | 3678 # and therefore SYMROOT, needs to be set at the project level. |
| 3676 'SYMROOT': '<(DEPTH)/xcodebuild', | 3679 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 3677 }, | 3680 }, |
| 3678 } | 3681 } |
| OLD | NEW |