OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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': { | 9 'variables': { |
10 # .gyp files should set chromium_code to 1 if they build Chromium-specific | 10 # .gyp files should set chromium_code to 1 if they build Chromium-specific |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 # sandbox the zygote process and, thus, all renderer processes. | 168 # sandbox the zygote process and, thus, all renderer processes. |
169 'linux_sandbox_path%': '', | 169 'linux_sandbox_path%': '', |
170 | 170 |
171 # Set this to true to enable SELinux support. | 171 # Set this to true to enable SELinux support. |
172 'selinux%': 0, | 172 'selinux%': 0, |
173 | 173 |
174 # Strip the binary after dumping symbols. | 174 # Strip the binary after dumping symbols. |
175 'linux_strip_binary%': 0, | 175 'linux_strip_binary%': 0, |
176 | 176 |
177 # Enable TCMalloc. | 177 # Enable TCMalloc. |
178 'linux_use_tcmalloc%': 0, | 178 'linux_use_tcmalloc%': 1, |
179 | 179 |
180 # Set to select the Title Case versions of strings in GRD files. | 180 # Set to select the Title Case versions of strings in GRD files. |
181 'use_titlecase_in_grd_files%': 0, | 181 'use_titlecase_in_grd_files%': 0, |
182 | 182 |
183 # Used to disable Native Client at compile time, for platforms where it | 183 # Used to disable Native Client at compile time, for platforms where it |
184 # isn't supported | 184 # isn't supported |
185 'disable_nacl%': 0, | 185 'disable_nacl%': 0, |
186 | 186 |
187 # Set ARM-v7 compilation flags | 187 # Set ARM-v7 compilation flags |
188 'armv7%': 0, | 188 'armv7%': 0, |
(...skipping 780 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
969 # and therefore SYMROOT, needs to be set at the project level. | 969 # and therefore SYMROOT, needs to be set at the project level. |
970 'SYMROOT': '<(DEPTH)/xcodebuild', | 970 'SYMROOT': '<(DEPTH)/xcodebuild', |
971 }, | 971 }, |
972 } | 972 } |
973 | 973 |
974 # Local Variables: | 974 # Local Variables: |
975 # tab-width:2 | 975 # tab-width:2 |
976 # indent-tabs-mode:nil | 976 # indent-tabs-mode:nil |
977 # End: | 977 # End: |
978 # vim: set expandtab tabstop=2 shiftwidth=2: | 978 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |