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

Side by Side Diff: build/common.gypi

Issue 2047013003: Revert of Add a buildflag to use the handle verifier in a per module mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 | « base/win/scoped_handle_test_dll.cc ('k') | 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 1608 matching lines...) Expand 10 before | Expand all | Expand 10 after
1619 }, { 1619 }, {
1620 'binutils_version%': 0, 1620 'binutils_version%': 0,
1621 }], 1621 }],
1622 ['OS=="win" and "<!pymod_do_main(dir_exists <(directx_sdk_default_path))"= ="True"', { 1622 ['OS=="win" and "<!pymod_do_main(dir_exists <(directx_sdk_default_path))"= ="True"', {
1623 'directx_sdk_path%': '<(directx_sdk_default_path)', 1623 'directx_sdk_path%': '<(directx_sdk_default_path)',
1624 }, { 1624 }, {
1625 'directx_sdk_path%': '$(DXSDK_DIR)', 1625 'directx_sdk_path%': '$(DXSDK_DIR)',
1626 }], 1626 }],
1627 ['OS=="win"', { 1627 ['OS=="win"', {
1628 'windows_driver_kit_path%': '$(WDK_DIR)', 1628 'windows_driver_kit_path%': '$(WDK_DIR)',
1629 'conditions': [
1630 ['component!="shared_library"', {
1631 'single_module_mode_handle_verifier%': 0,
1632 }, {
1633 'single_module_mode_handle_verifier%': 1,
1634 }],
1635 ],
1636 }], 1629 }],
1637 ['os_posix==1 and OS!="mac" and OS!="ios"', { 1630 ['os_posix==1 and OS!="mac" and OS!="ios"', {
1638 'conditions': [ 1631 'conditions': [
1639 ['target_arch=="mipsel" or target_arch=="mips64el"', { 1632 ['target_arch=="mipsel" or target_arch=="mips64el"', {
1640 'werror%': '', 1633 'werror%': '',
1641 'disable_nacl%': 1, 1634 'disable_nacl%': 1,
1642 'nacl_untrusted_build%': 0, 1635 'nacl_untrusted_build%': 0,
1643 'use_allocator%': 'none', 1636 'use_allocator%': 'none',
1644 }], 1637 }],
1645 # Use a 64-bit linker to avoid running out of address space. The 1638 # Use a 64-bit linker to avoid running out of address space. The
(...skipping 4657 matching lines...) Expand 10 before | Expand all | Expand 10 after
6303 # settings in target dicts. SYMROOT is a special case, because many other 6296 # settings in target dicts. SYMROOT is a special case, because many other
6304 # Xcode variables depend on it, including variables such as 6297 # Xcode variables depend on it, including variables such as
6305 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6298 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6306 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6299 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6307 # files to appear (when present) in the UI as actual files and not red 6300 # files to appear (when present) in the UI as actual files and not red
6308 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6301 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6309 # and therefore SYMROOT, needs to be set at the project level. 6302 # and therefore SYMROOT, needs to be set at the project level.
6310 'SYMROOT': '<(DEPTH)/xcodebuild', 6303 'SYMROOT': '<(DEPTH)/xcodebuild',
6311 }, 6304 },
6312 } 6305 }
OLDNEW
« no previous file with comments | « base/win/scoped_handle_test_dll.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698