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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 # Enable building with ASAN (Clang's -faddress-sanitizer option). | 221 # Enable building with ASAN (Clang's -faddress-sanitizer option). |
222 # -faddress-sanitizer only works with clang, but asan=1 implies clang=1 | 222 # -faddress-sanitizer only works with clang, but asan=1 implies clang=1 |
223 # See https://sites.google.com/a/chromium.org/dev/developers/testing/addre
sssanitizer | 223 # See https://sites.google.com/a/chromium.org/dev/developers/testing/addre
sssanitizer |
224 'asan%': 0, | 224 'asan%': 0, |
225 | 225 |
226 # Enable building with TSAN (Clang's -fthread-sanitizer option). | 226 # Enable building with TSAN (Clang's -fthread-sanitizer option). |
227 # -fthread-sanitizer only works with clang, but tsan=1 implies clang=1 | 227 # -fthread-sanitizer only works with clang, but tsan=1 implies clang=1 |
228 # See http://clang.llvm.org/docs/ThreadSanitizer.html | 228 # See http://clang.llvm.org/docs/ThreadSanitizer.html |
229 'tsan%': 0, | 229 'tsan%': 0, |
230 | 230 |
231 # Set to true to instrument the code with function call logger. | 231 # Set to true to instrument the code with function call logger. See |
232 # See src/third_party/cygprofile/cyg-profile.cc for details. | 232 # src/base/android/third_party/cygprofile_startup/cygprofile_startup.cc |
| 233 # for details. |
233 'order_profiling%': 0, | 234 'order_profiling%': 0, |
234 | 235 |
235 # Use the provided profiled order file to link Chrome image with it. | 236 # Use the provided profiled order file to link Chrome image with it. |
236 # This makes Chrome faster by better using CPU cache when executing code. | 237 # This makes Chrome faster by better using CPU cache when executing code. |
237 # This is known as PGO (profile guided optimization). | 238 # This is known as PGO (profile guided optimization). |
238 # See https://sites.google.com/a/google.com/chrome-msk/dev/boot-speed-up-e
ffort | 239 # See https://sites.google.com/a/google.com/chrome-msk/dev/boot-speed-up-e
ffort |
239 'order_text_section%' : "", | 240 'order_text_section%' : "", |
240 | 241 |
241 # Set to 1 compile with -fPIC cflag on linux. This is a must for shared | 242 # Set to 1 compile with -fPIC cflag on linux. This is a must for shared |
242 # libraries on linux x86-64 and arm, plus ASLR. | 243 # libraries on linux x86-64 and arm, plus ASLR. |
(...skipping 3028 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3271 # settings in target dicts. SYMROOT is a special case, because many other | 3272 # settings in target dicts. SYMROOT is a special case, because many other |
3272 # Xcode variables depend on it, including variables such as | 3273 # Xcode variables depend on it, including variables such as |
3273 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3274 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3274 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3275 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3275 # files to appear (when present) in the UI as actual files and not red | 3276 # files to appear (when present) in the UI as actual files and not red |
3276 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3277 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
3277 # and therefore SYMROOT, needs to be set at the project level. | 3278 # and therefore SYMROOT, needs to be set at the project level. |
3278 'SYMROOT': '<(DEPTH)/xcodebuild', | 3279 'SYMROOT': '<(DEPTH)/xcodebuild', |
3279 }, | 3280 }, |
3280 } | 3281 } |
OLD | NEW |