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

Side by Side Diff: build/common.gypi

Issue 1977833003: 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: Fix the GN config. 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 1613 matching lines...) Expand 10 before | Expand all | Expand 10 after
1624 }, { 1624 }, {
1625 'binutils_version%': 0, 1625 'binutils_version%': 0,
1626 }], 1626 }],
1627 ['OS=="win" and "<!pymod_do_main(dir_exists <(directx_sdk_default_path))"= ="True"', { 1627 ['OS=="win" and "<!pymod_do_main(dir_exists <(directx_sdk_default_path))"= ="True"', {
1628 'directx_sdk_path%': '<(directx_sdk_default_path)', 1628 'directx_sdk_path%': '<(directx_sdk_default_path)',
1629 }, { 1629 }, {
1630 'directx_sdk_path%': '$(DXSDK_DIR)', 1630 'directx_sdk_path%': '$(DXSDK_DIR)',
1631 }], 1631 }],
1632 ['OS=="win"', { 1632 ['OS=="win"', {
1633 'windows_driver_kit_path%': '$(WDK_DIR)', 1633 'windows_driver_kit_path%': '$(WDK_DIR)',
1634 'conditions': [
1635 ['component!="shared_library"', {
1636 'single_module_mode_handle_verifier%': 0,
1637 }, {
1638 'single_module_mode_handle_verifier%': 1,
1639 }],
1640 ],
1634 }], 1641 }],
1635 ['os_posix==1 and OS!="mac" and OS!="ios"', { 1642 ['os_posix==1 and OS!="mac" and OS!="ios"', {
1636 'conditions': [ 1643 'conditions': [
1637 ['target_arch=="mipsel" or target_arch=="mips64el"', { 1644 ['target_arch=="mipsel" or target_arch=="mips64el"', {
1638 'werror%': '', 1645 'werror%': '',
1639 'disable_nacl%': 1, 1646 'disable_nacl%': 1,
1640 'nacl_untrusted_build%': 0, 1647 'nacl_untrusted_build%': 0,
1641 'use_allocator%': 'none', 1648 'use_allocator%': 'none',
1642 }], 1649 }],
1643 # Use a 64-bit linker to avoid running out of address space. The 1650 # Use a 64-bit linker to avoid running out of address space. The
(...skipping 4711 matching lines...) Expand 10 before | Expand all | Expand 10 after
6355 # settings in target dicts. SYMROOT is a special case, because many other 6362 # settings in target dicts. SYMROOT is a special case, because many other
6356 # Xcode variables depend on it, including variables such as 6363 # Xcode variables depend on it, including variables such as
6357 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6364 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6358 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6365 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6359 # files to appear (when present) in the UI as actual files and not red 6366 # files to appear (when present) in the UI as actual files and not red
6360 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6367 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6361 # and therefore SYMROOT, needs to be set at the project level. 6368 # and therefore SYMROOT, needs to be set at the project level.
6362 'SYMROOT': '<(DEPTH)/xcodebuild', 6369 'SYMROOT': '<(DEPTH)/xcodebuild',
6363 }, 6370 },
6364 } 6371 }
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