Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(140)

Side by Side Diff: build/common.gypi

Issue 1120083003: Introduce the support required to test a Kasko-enabled build on Swarm. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@enable_kasko_by_default
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 398 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 'asan_field_padding%': 0, 409 'asan_field_padding%': 0,
410 410
411 # Enable Chromium overrides of the default configurations for various 411 # Enable Chromium overrides of the default configurations for various
412 # dynamic tools (like ASan). 412 # dynamic tools (like ASan).
413 'use_sanitizer_options%': 0, 413 'use_sanitizer_options%': 0,
414 414
415 # Enable building with SyzyAsan. 415 # Enable building with SyzyAsan.
416 # See https://code.google.com/p/sawbuck/wiki/SyzyASanHowTo 416 # See https://code.google.com/p/sawbuck/wiki/SyzyASanHowTo
417 'syzyasan%': 0, 417 'syzyasan%': 0,
418 418
419 # Enable crash reporting via Kasko.
420 'kasko%': 0,
421
422 # Enable building with LSan (Clang's -fsanitize=leak option). 419 # Enable building with LSan (Clang's -fsanitize=leak option).
423 # -fsanitize=leak only works with clang, but lsan=1 implies clang=1 420 # -fsanitize=leak only works with clang, but lsan=1 implies clang=1
424 # See https://sites.google.com/a/chromium.org/dev/developers/testing/leaks anitizer 421 # See https://sites.google.com/a/chromium.org/dev/developers/testing/leaks anitizer
425 'lsan%': 0, 422 'lsan%': 0,
426 423
427 # Enable building with TSan (Clang's -fsanitize=thread option). 424 # Enable building with TSan (Clang's -fsanitize=thread option).
428 # -fsanitize=thread only works with clang, but tsan=1 implies clang=1 425 # -fsanitize=thread only works with clang, but tsan=1 implies clang=1
429 # See http://clang.llvm.org/docs/ThreadSanitizer.html 426 # See http://clang.llvm.org/docs/ThreadSanitizer.html
430 'tsan%': 0, 427 'tsan%': 0,
431 'tsan_blacklist%': '<(PRODUCT_DIR)/../../tools/memory/tsan_v2/ignores.txt' , 428 'tsan_blacklist%': '<(PRODUCT_DIR)/../../tools/memory/tsan_v2/ignores.txt' ,
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after
1004 'enable_wifi_bootstrapping%' : 1, 1001 'enable_wifi_bootstrapping%' : 1,
1005 }], 1002 }],
1006 1003
1007 # Path to sas.dll, which provides the SendSAS function. 1004 # Path to sas.dll, which provides the SendSAS function.
1008 # http://msdn.microsoft.com/en-us/library/windows/desktop/dd979761(v=vs. 85).aspx 1005 # http://msdn.microsoft.com/en-us/library/windows/desktop/dd979761(v=vs. 85).aspx
1009 ['target_arch=="x64"', { 1006 ['target_arch=="x64"', {
1010 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/a md64', 1007 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/a md64',
1011 }, { 1008 }, {
1012 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/x 86', 1009 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/x 86',
1013 }], 1010 }],
1011
1012 # Enable crash reporting via Kasko.
1013 ['OS=="win" and target_arch=="ia32"', {
1014 'kasko%': 0,
csharp 2015/05/01 20:08:12 Is this suppose to be the same value in both place
erikwright (departed) 2015/05/04 15:06:07 This doesn't need to be in the current CL.
1015 }, {
1016 'kasko%': 0,
1017 }],
1018
1014 ], 1019 ],
1015 1020
1016 # Setting this to '0' will cause V8's startup snapshot to be 1021 # Setting this to '0' will cause V8's startup snapshot to be
1017 # embedded in the binary instead of being a external files. 1022 # embedded in the binary instead of being a external files.
1018 'v8_use_external_startup_data%': 1, 1023 'v8_use_external_startup_data%': 1,
1019 1024
1020 # Set this to 1 to enable use of concatenated impulse responses 1025 # Set this to 1 to enable use of concatenated impulse responses
1021 # for the HRTF panner in WebAudio. 1026 # for the HRTF panner in WebAudio.
1022 'use_concatenated_impulse_responses': 1, 1027 'use_concatenated_impulse_responses': 1,
1023 1028
(...skipping 5140 matching lines...) Expand 10 before | Expand all | Expand 10 after
6164 # settings in target dicts. SYMROOT is a special case, because many other 6169 # settings in target dicts. SYMROOT is a special case, because many other
6165 # Xcode variables depend on it, including variables such as 6170 # Xcode variables depend on it, including variables such as
6166 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6171 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6167 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6172 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6168 # files to appear (when present) in the UI as actual files and not red 6173 # files to appear (when present) in the UI as actual files and not red
6169 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6174 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6170 # and therefore SYMROOT, needs to be set at the project level. 6175 # and therefore SYMROOT, needs to be set at the project level.
6171 'SYMROOT': '<(DEPTH)/xcodebuild', 6176 'SYMROOT': '<(DEPTH)/xcodebuild',
6172 }, 6177 },
6173 } 6178 }
OLDNEW
« no previous file with comments | « build/android/pylib/utils/isolator.py ('k') | build/isolate.gypi » ('j') | chrome/chrome.isolate » ('J')

Powered by Google App Engine
This is Rietveld 408576698