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 925 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
936 'linux_breakpad%': 1, | 936 'linux_breakpad%': 1, |
937 # And if we want to dump symbols for Breakpad-enabled builds. | 937 # And if we want to dump symbols for Breakpad-enabled builds. |
938 'linux_dump_symbols%': 0, | 938 'linux_dump_symbols%': 0, |
939 # And if we want to strip the binary after dumping symbols. | 939 # And if we want to strip the binary after dumping symbols. |
940 'linux_strip_binary%': 0, | 940 'linux_strip_binary%': 0, |
941 # Strip the test binaries needed for Linux reliability tests. | 941 # Strip the test binaries needed for Linux reliability tests. |
942 'linux_strip_reliability_tests%': 0, | 942 'linux_strip_reliability_tests%': 0, |
943 | 943 |
944 # Enable TCMalloc. | 944 # Enable TCMalloc. |
945 'linux_use_tcmalloc%': 1, | 945 'linux_use_tcmalloc%': 1, |
| 946 'android_use_tcmalloc%': 0, |
946 | 947 |
947 # Disable TCMalloc's heapchecker. | 948 # Disable TCMalloc's heapchecker. |
948 'linux_use_heapchecker%': 0, | 949 'linux_use_heapchecker%': 0, |
949 | 950 |
950 # Disable shadow stack keeping used by heapcheck to unwind the stacks | 951 # Disable shadow stack keeping used by heapcheck to unwind the stacks |
951 # better. | 952 # better. |
952 'linux_keep_shadow_stacks%': 0, | 953 'linux_keep_shadow_stacks%': 0, |
953 | 954 |
954 # Set to 1 to link against libgnome-keyring instead of using dlopen(). | 955 # Set to 1 to link against libgnome-keyring instead of using dlopen(). |
955 'linux_link_gnome_keyring%': 0, | 956 'linux_link_gnome_keyring%': 0, |
(...skipping 3404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4360 # settings in target dicts. SYMROOT is a special case, because many other | 4361 # settings in target dicts. SYMROOT is a special case, because many other |
4361 # Xcode variables depend on it, including variables such as | 4362 # Xcode variables depend on it, including variables such as |
4362 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4363 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4363 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4364 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4364 # files to appear (when present) in the UI as actual files and not red | 4365 # files to appear (when present) in the UI as actual files and not red |
4365 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4366 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4366 # and therefore SYMROOT, needs to be set at the project level. | 4367 # and therefore SYMROOT, needs to be set at the project level. |
4367 'SYMROOT': '<(DEPTH)/xcodebuild', | 4368 'SYMROOT': '<(DEPTH)/xcodebuild', |
4368 }, | 4369 }, |
4369 } | 4370 } |
OLD | NEW |