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

Side by Side Diff: build/common.gypi

Issue 952183003: Disable allocator_shim_win for the SyzyASan builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 495 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 # 2: Large tables, high accuracy 506 # 2: Large tables, high accuracy
507 'cld2_table_size%': 2, 507 'cld2_table_size%': 2,
508 508
509 # Enable spell checker. 509 # Enable spell checker.
510 'enable_spellcheck%': 1, 510 'enable_spellcheck%': 1,
511 511
512 # Webrtc compilation is enabled by default. Set to 0 to disable. 512 # Webrtc compilation is enabled by default. Set to 0 to disable.
513 'enable_webrtc%': 1, 513 'enable_webrtc%': 1,
514 514
515 # Media router support is enabled by default. Set to 0 to disable. 515 # Media router support is enabled by default. Set to 0 to disable.
516 'enable_media_router%': 1, 516 'enable_media_router%': 1,
517 517
518 # Enables use of the session service, which is enabled by default. 518 # Enables use of the session service, which is enabled by default.
519 # Support for disabling depends on the platform. 519 # Support for disabling depends on the platform.
520 'enable_session_service%': 1, 520 'enable_session_service%': 1,
521 521
522 # Enables theme support, which is enabled by default. Support for 522 # Enables theme support, which is enabled by default. Support for
523 # disabling depends on the platform. 523 # disabling depends on the platform.
524 'enable_themes%': 1, 524 'enable_themes%': 1,
525 525
526 # Enables autofill dialog and associated features; disabled by default. 526 # Enables autofill dialog and associated features; disabled by default.
(...skipping 1401 matching lines...) Expand 10 before | Expand all | Expand 10 after
1928 'winsdk_arch%': 'x86', 1928 'winsdk_arch%': 'x86',
1929 },{ 1929 },{
1930 'winsdk_arch%': '<(target_arch)', 1930 'winsdk_arch%': '<(target_arch)',
1931 }], 1931 }],
1932 ['component=="shared_library"', { 1932 ['component=="shared_library"', {
1933 'win_use_allocator_shim%': 0, 1933 'win_use_allocator_shim%': 0,
1934 },{ 1934 },{
1935 # Turn on multiple dll by default on Windows when in static_library. 1935 # Turn on multiple dll by default on Windows when in static_library.
1936 'chrome_multiple_dll%': 1, 1936 'chrome_multiple_dll%': 1,
1937 }], 1937 }],
1938 ['asan==1', { 1938 ['asan==1 or syzyasan==1', {
1939 'win_use_allocator_shim%': 0, 1939 'win_use_allocator_shim%': 0,
1940 }], 1940 }],
1941 ['component=="shared_library" and "<(GENERATOR)"=="ninja"', { 1941 ['component=="shared_library" and "<(GENERATOR)"=="ninja"', {
1942 # Only enabled by default for ninja because it's buggy in VS. 1942 # Only enabled by default for ninja because it's buggy in VS.
1943 # Not enabled for component=static_library because some targets 1943 # Not enabled for component=static_library because some targets
1944 # are too large and the toolchain fails due to the size of the 1944 # are too large and the toolchain fails due to the size of the
1945 # .obj files. 1945 # .obj files.
1946 'incremental_chrome_dll%': 1, 1946 'incremental_chrome_dll%': 1,
1947 }], 1947 }],
1948 # Don't do incremental linking for large modules on 32-bit or when 1948 # Don't do incremental linking for large modules on 32-bit or when
(...skipping 3992 matching lines...) Expand 10 before | Expand all | Expand 10 after
5941 # settings in target dicts. SYMROOT is a special case, because many other 5941 # settings in target dicts. SYMROOT is a special case, because many other
5942 # Xcode variables depend on it, including variables such as 5942 # Xcode variables depend on it, including variables such as
5943 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5943 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5944 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5944 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5945 # files to appear (when present) in the UI as actual files and not red 5945 # files to appear (when present) in the UI as actual files and not red
5946 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5946 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5947 # and therefore SYMROOT, needs to be set at the project level. 5947 # and therefore SYMROOT, needs to be set at the project level.
5948 'SYMROOT': '<(DEPTH)/xcodebuild', 5948 'SYMROOT': '<(DEPTH)/xcodebuild',
5949 }, 5949 },
5950 } 5950 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698