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

Side by Side Diff: chrome/installer/mini_installer.gyp

Issue 1035893002: Disable WPO for mini_installer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 | « 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 { 1 {
2 'variables': { 2 'variables': {
3 'version_py': '<(DEPTH)/build/util/version.py', 3 'version_py': '<(DEPTH)/build/util/version.py',
4 'version_path': '../../chrome/VERSION', 4 'version_path': '../../chrome/VERSION',
5 'lastchange_path': '<(DEPTH)/build/util/LASTCHANGE', 5 'lastchange_path': '<(DEPTH)/build/util/LASTCHANGE',
6 # 'branding_dir' is set in the 'conditions' section at the bottom. 6 # 'branding_dir' is set in the 'conditions' section at the bottom.
7 'msvs_use_common_release': 0, 7 'msvs_use_common_release': 0,
8 'msvs_use_common_linker_extras': 0, 8 'msvs_use_common_linker_extras': 0,
9 'mini_installer_internal_deps%': 0, 9 'mini_installer_internal_deps%': 0,
10 'mini_installer_official_deps%': 0, 10 'mini_installer_official_deps%': 0,
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 }, 127 },
128 }, 128 },
129 'Release_Base': { 129 'Release_Base': {
130 'includes': ['../../build/internal/release_defaults.gypi'], 130 'includes': ['../../build/internal/release_defaults.gypi'],
131 'msvs_settings': { 131 'msvs_settings': {
132 'VCCLCompilerTool': { 132 'VCCLCompilerTool': {
133 'EnableIntrinsicFunctions': 'true', 133 'EnableIntrinsicFunctions': 'true',
134 'BasicRuntimeChecks': '0', 134 'BasicRuntimeChecks': '0',
135 'BufferSecurityCheck': 'false', 135 'BufferSecurityCheck': 'false',
136 'ExceptionHandling': '0', 136 'ExceptionHandling': '0',
137 'WholeProgramOptimization': 'false',
137 }, 138 },
138 'VCLinkerTool': { 139 'VCLinkerTool': {
139 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 140 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
140 'Profile': 'false', # Conflicts with /FIXED 141 'Profile': 'false', # Conflicts with /FIXED
141 'AdditionalOptions': [ 142 'AdditionalOptions': [
142 '/SAFESEH:NO', 143 '/SAFESEH:NO',
143 '/NXCOMPAT', 144 '/NXCOMPAT',
144 '/DYNAMICBASE:NO', 145 '/DYNAMICBASE:NO',
145 '/FIXED', 146 '/FIXED',
146 ], 147 ],
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 'variables': { 342 'variables': {
342 'branding_dir': '../app/theme/google_chrome', 343 'branding_dir': '../app/theme/google_chrome',
343 }, 344 },
344 }, { # else branding!="Chrome" 345 }, { # else branding!="Chrome"
345 'variables': { 346 'variables': {
346 'branding_dir': '../app/theme/chromium', 347 'branding_dir': '../app/theme/chromium',
347 }, 348 },
348 }], 349 }],
349 ], 350 ],
350 } 351 }
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