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 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
436 'enable_hotwording%': 0, | 436 'enable_hotwording%': 0, |
437 | 437 |
438 # Notifications are compiled in by default. Set to 0 to disable. | 438 # Notifications are compiled in by default. Set to 0 to disable. |
439 'notifications%' : 1, | 439 'notifications%' : 1, |
440 | 440 |
441 # Use dsymutil to generate real .dSYM files on Mac. The default is 0 for | 441 # Use dsymutil to generate real .dSYM files on Mac. The default is 0 for |
442 # regular builds and 1 for ASan builds. | 442 # regular builds and 1 for ASan builds. |
443 'mac_want_real_dsym%': 'default', | 443 'mac_want_real_dsym%': 'default', |
444 | 444 |
445 # If this is set, the clang plugins used on the buildbot will be used. | 445 # If this is set, the clang plugins used on the buildbot will be used. |
446 # Run tools/clang/scripts/update.sh to make sure they are compiled. | 446 # Run tools/clang/scripts/update.py to make sure they are compiled. |
447 # This causes 'clang_chrome_plugins_flags' to be set. | 447 # This causes 'clang_chrome_plugins_flags' to be set. |
448 # Has no effect if 'clang' is not set as well. | 448 # Has no effect if 'clang' is not set as well. |
449 'clang_use_chrome_plugins%': 1, | 449 'clang_use_chrome_plugins%': 1, |
450 | 450 |
451 # Enable building with ASAN (Clang's -fsanitize=address option). | 451 # Enable building with ASAN (Clang's -fsanitize=address option). |
452 # -fsanitize=address only works with clang, but asan=1 implies clang=1 | 452 # -fsanitize=address only works with clang, but asan=1 implies clang=1 |
453 # See https://sites.google.com/a/chromium.org/dev/developers/testing/addre
sssanitizer | 453 # See https://sites.google.com/a/chromium.org/dev/developers/testing/addre
sssanitizer |
454 'asan%': 0, | 454 'asan%': 0, |
455 'asan_blacklist%': '<(PRODUCT_DIR)/../../tools/memory/asan/blacklist.txt', | 455 'asan_blacklist%': '<(PRODUCT_DIR)/../../tools/memory/asan/blacklist.txt', |
456 # Enable coverage gathering instrumentation in sanitizer tools. This flag | 456 # Enable coverage gathering instrumentation in sanitizer tools. This flag |
(...skipping 5913 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6370 # settings in target dicts. SYMROOT is a special case, because many other | 6370 # settings in target dicts. SYMROOT is a special case, because many other |
6371 # Xcode variables depend on it, including variables such as | 6371 # Xcode variables depend on it, including variables such as |
6372 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6372 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
6373 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6373 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
6374 # files to appear (when present) in the UI as actual files and not red | 6374 # files to appear (when present) in the UI as actual files and not red |
6375 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6375 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
6376 # and therefore SYMROOT, needs to be set at the project level. | 6376 # and therefore SYMROOT, needs to be set at the project level. |
6377 'SYMROOT': '<(DEPTH)/xcodebuild', | 6377 'SYMROOT': '<(DEPTH)/xcodebuild', |
6378 }, | 6378 }, |
6379 } | 6379 } |
OLD | NEW |