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

Side by Side Diff: base/base.gyp

Issue 1678553002: Revert of Enable handle verifier for tests and add some tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 | « base/BUILD.gn ('k') | base/debug/close_handle_hook_win.cc » ('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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 ], 132 ],
133 'direct_dependent_settings': { 133 'direct_dependent_settings': {
134 'defines': [ 134 'defines': [
135 'NO_TCMALLOC', 135 'NO_TCMALLOC',
136 ], 136 ],
137 }, 137 },
138 }], 138 }],
139 ], 139 ],
140 }], 140 }],
141 ['OS == "win"', { 141 ['OS == "win"', {
142 'conditions': [
143 ['win_disable_handle_verifier_hooks == 1', {
144 'defines': ['DISABLE_HANDLE_VERIFIER_HOOKS'],
145 }],
146 ],
147 # Specify delayload for base.dll. 142 # Specify delayload for base.dll.
148 'msvs_settings': { 143 'msvs_settings': {
149 'VCLinkerTool': { 144 'VCLinkerTool': {
150 'DelayLoadDLLs': [ 145 'DelayLoadDLLs': [
151 'cfgmgr32.dll', 146 'cfgmgr32.dll',
152 'powrprof.dll', 147 'powrprof.dll',
153 'setupapi.dll', 148 'setupapi.dll',
154 ], 149 ],
155 'AdditionalDependencies': [ 150 'AdditionalDependencies': [
156 'cfgmgr32.lib', 151 'cfgmgr32.lib',
(...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after
700 4267, 695 4267,
701 ], 696 ],
702 'conditions': [ 697 'conditions': [
703 ['icu_use_data_file_flag==0', { 698 ['icu_use_data_file_flag==0', {
704 # This is needed to trigger the dll copy step on windows. 699 # This is needed to trigger the dll copy step on windows.
705 # TODO(mark): This should not be necessary. 700 # TODO(mark): This should not be necessary.
706 'dependencies': [ 701 'dependencies': [
707 '../third_party/icu/icu.gyp:icudata', 702 '../third_party/icu/icu.gyp:icudata',
708 ], 703 ],
709 }], 704 }],
710 ['win_disable_handle_verifier_hooks == 1', {
711 'defines': ['DISABLE_HANDLE_VERIFIER_HOOKS'],
712 }],
713 ], 705 ],
714 }, { # OS != "win" 706 }, { # OS != "win"
715 'dependencies': [ 707 'dependencies': [
716 'third_party/libevent/libevent.gyp:libevent' 708 'third_party/libevent/libevent.gyp:libevent'
717 ], 709 ],
718 }], 710 }],
719 ], # conditions 711 ], # conditions
720 'target_conditions': [ 712 'target_conditions': [
721 ['OS == "ios" and _toolset != "host"', { 713 ['OS == "ios" and _toolset != "host"', {
722 'sources/': [ 714 'sources/': [
(...skipping 923 matching lines...) Expand 10 before | Expand all | Expand 10 after
1646 '../build/isolate.gypi', 1638 '../build/isolate.gypi',
1647 ], 1639 ],
1648 'sources': [ 1640 'sources': [
1649 'base_unittests.isolate', 1641 'base_unittests.isolate',
1650 ], 1642 ],
1651 }, 1643 },
1652 ], 1644 ],
1653 }], 1645 }],
1654 ], 1646 ],
1655 } 1647 }
OLDNEW
« no previous file with comments | « base/BUILD.gn ('k') | base/debug/close_handle_hook_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698