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

Side by Side Diff: build/common.gypi

Issue 866023003: Fetch Kasko crash reporter for use with SyzyASAN. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 | « DEPS ('k') | build/get_syzygy_binaries.py » ('j') | 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 2772 matching lines...) Expand 10 before | Expand all | Expand 10 after
2783 'msvs_settings': { 2783 'msvs_settings': {
2784 'VCLinkerTool': { 2784 'VCLinkerTool': {
2785 'Profile': 'true', 2785 'Profile': 'true',
2786 }, 2786 },
2787 }, 2787 },
2788 'defines': [ 2788 'defines': [
2789 'SYZYASAN', 2789 'SYZYASAN',
2790 'MEMORY_TOOL_REPLACES_ALLOCATOR', 2790 'MEMORY_TOOL_REPLACES_ALLOCATOR',
2791 'MEMORY_SANITIZER_INITIAL_SIZE', 2791 'MEMORY_SANITIZER_INITIAL_SIZE',
2792 ], 2792 ],
2793 'include_dirs': [
2794 '<(DEPTH)/third_party/kasko/include',
2795 ],
2793 }], 2796 }],
2794 ['OS=="win"', { 2797 ['OS=="win"', {
2795 'defines': [ 2798 'defines': [
2796 '__STD_C', 2799 '__STD_C',
2797 '_CRT_SECURE_NO_DEPRECATE', 2800 '_CRT_SECURE_NO_DEPRECATE',
2798 '_SCL_SECURE_NO_DEPRECATE', 2801 '_SCL_SECURE_NO_DEPRECATE',
2799 # This define is required to pull in the new Win8 interfaces from 2802 # This define is required to pull in the new Win8 interfaces from
2800 # system headers like ShObjIdl.h. 2803 # system headers like ShObjIdl.h.
2801 'NTDDI_VERSION=0x06030000', 2804 'NTDDI_VERSION=0x06030000',
2802 # This is required for ATL to use XP-safe versions of its functions. 2805 # This is required for ATL to use XP-safe versions of its functions.
(...skipping 3051 matching lines...) Expand 10 before | Expand all | Expand 10 after
5854 # settings in target dicts. SYMROOT is a special case, because many other 5857 # settings in target dicts. SYMROOT is a special case, because many other
5855 # Xcode variables depend on it, including variables such as 5858 # Xcode variables depend on it, including variables such as
5856 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5859 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5857 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5860 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5858 # files to appear (when present) in the UI as actual files and not red 5861 # files to appear (when present) in the UI as actual files and not red
5859 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5862 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5860 # and therefore SYMROOT, needs to be set at the project level. 5863 # and therefore SYMROOT, needs to be set at the project level.
5861 'SYMROOT': '<(DEPTH)/xcodebuild', 5864 'SYMROOT': '<(DEPTH)/xcodebuild',
5862 }, 5865 },
5863 } 5866 }
OLDNEW
« no previous file with comments | « DEPS ('k') | build/get_syzygy_binaries.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698