| 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 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 # dynamic tools (like ASan). | 480 # dynamic tools (like ASan). |
| 481 'use_sanitizer_options%': 0, | 481 'use_sanitizer_options%': 0, |
| 482 | 482 |
| 483 # Enable building with SyzyAsan. | 483 # Enable building with SyzyAsan. |
| 484 # See https://code.google.com/p/sawbuck/wiki/SyzyASanHowTo | 484 # See https://code.google.com/p/sawbuck/wiki/SyzyASanHowTo |
| 485 'syzyasan%': 0, | 485 'syzyasan%': 0, |
| 486 | 486 |
| 487 # Enable crash reporting via Kasko. | 487 # Enable crash reporting via Kasko. |
| 488 'kasko%': 0, | 488 'kasko%': 0, |
| 489 | 489 |
| 490 # Enable hang reports in Kasko. | 490 # Enable hang reports in Kasko. Requires Kasko to be enabled. |
| 491 'kasko_hang_reports%': 0, | 491 'kasko_hang_reports%': 0, |
| 492 | 492 |
| 493 # Enable building with LSan (Clang's -fsanitize=leak option). | 493 # Enable building with LSan (Clang's -fsanitize=leak option). |
| 494 # -fsanitize=leak only works with clang, but lsan=1 implies clang=1 | 494 # -fsanitize=leak only works with clang, but lsan=1 implies clang=1 |
| 495 # See https://sites.google.com/a/chromium.org/dev/developers/testing/leaks
anitizer | 495 # See https://sites.google.com/a/chromium.org/dev/developers/testing/leaks
anitizer |
| 496 'lsan%': 0, | 496 'lsan%': 0, |
| 497 | 497 |
| 498 # Enable building with TSan (Clang's -fsanitize=thread option). | 498 # Enable building with TSan (Clang's -fsanitize=thread option). |
| 499 # -fsanitize=thread only works with clang, but tsan=1 implies clang=1 | 499 # -fsanitize=thread only works with clang, but tsan=1 implies clang=1 |
| 500 # See http://clang.llvm.org/docs/ThreadSanitizer.html | 500 # See http://clang.llvm.org/docs/ThreadSanitizer.html |
| (...skipping 5884 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6385 # settings in target dicts. SYMROOT is a special case, because many other | 6385 # settings in target dicts. SYMROOT is a special case, because many other |
| 6386 # Xcode variables depend on it, including variables such as | 6386 # Xcode variables depend on it, including variables such as |
| 6387 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6387 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 6388 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6388 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 6389 # files to appear (when present) in the UI as actual files and not red | 6389 # files to appear (when present) in the UI as actual files and not red |
| 6390 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6390 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 6391 # and therefore SYMROOT, needs to be set at the project level. | 6391 # and therefore SYMROOT, needs to be set at the project level. |
| 6392 'SYMROOT': '<(DEPTH)/xcodebuild', | 6392 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 6393 }, | 6393 }, |
| 6394 } | 6394 } |
| OLD | NEW |