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

Side by Side Diff: build/common.gypi

Issue 1497813002: allocator cleanup: set use_allocator=none for mac and ios (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@allocator_gyp
Patch Set: add comment Created 5 years 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 1878 matching lines...) Expand 10 before | Expand all | Expand 10 after
1889 # All Chrome builds have breakpad symbols, but only process the 1889 # All Chrome builds have breakpad symbols, but only process the
1890 # symbols from official builds. 1890 # symbols from official builds.
1891 ['(branding=="Chrome" and buildtype=="Official")', { 1891 ['(branding=="Chrome" and buildtype=="Official")', {
1892 'mac_strip_release%': 1, 1892 'mac_strip_release%': 1,
1893 }], 1893 }],
1894 ], 1894 ],
1895 }], # OS=="mac" 1895 }], # OS=="mac"
1896 ['OS=="mac" or OS=="ios"', { 1896 ['OS=="mac" or OS=="ios"', {
1897 'clang%': 1, 1897 'clang%': 1,
1898 1898
1899 # On Mac and iOS we just use the default system allocator.
1900 'use_allocator%': 'none',
1901
1899 'variables': { 1902 'variables': {
1900 # Mac OS X SDK and deployment target support. The SDK identifies 1903 # Mac OS X SDK and deployment target support. The SDK identifies
1901 # the version of the system headers that will be used, and 1904 # the version of the system headers that will be used, and
1902 # corresponds to the MAC_OS_X_VERSION_MAX_ALLOWED compile-time 1905 # corresponds to the MAC_OS_X_VERSION_MAX_ALLOWED compile-time
1903 # macro. "Maximum allowed" refers to the operating system version 1906 # macro. "Maximum allowed" refers to the operating system version
1904 # whose APIs are available in the headers. The deployment target 1907 # whose APIs are available in the headers. The deployment target
1905 # identifies the minimum system version that the built products are 1908 # identifies the minimum system version that the built products are
1906 # expected to function on. It corresponds to the 1909 # expected to function on. It corresponds to the
1907 # MAC_OS_X_VERSION_MIN_REQUIRED compile-time macro. To ensure these 1910 # MAC_OS_X_VERSION_MIN_REQUIRED compile-time macro. To ensure these
1908 # macros are available, #include <AvailabilityMacros.h>. Additional 1911 # macros are available, #include <AvailabilityMacros.h>. Additional
(...skipping 4470 matching lines...) Expand 10 before | Expand all | Expand 10 after
6379 # settings in target dicts. SYMROOT is a special case, because many other 6382 # settings in target dicts. SYMROOT is a special case, because many other
6380 # Xcode variables depend on it, including variables such as 6383 # Xcode variables depend on it, including variables such as
6381 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6384 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6382 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6385 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6383 # files to appear (when present) in the UI as actual files and not red 6386 # files to appear (when present) in the UI as actual files and not red
6384 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6387 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6385 # and therefore SYMROOT, needs to be set at the project level. 6388 # and therefore SYMROOT, needs to be set at the project level.
6386 'SYMROOT': '<(DEPTH)/xcodebuild', 6389 'SYMROOT': '<(DEPTH)/xcodebuild',
6387 }, 6390 },
6388 } 6391 }
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