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

Side by Side Diff: chrome/chrome.gyp

Issue 160486: Try increasing the stack size of the main thread, to see if it changes chrome... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 4 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 | Annotate | Revision Log
« 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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 # Define the common dependencies that contain all the actual 8 # Define the common dependencies that contain all the actual
9 # Chromium functionality. This list gets pulled in below by 9 # Chromium functionality. This list gets pulled in below by
10 # the link of the actual chrome (or chromium) executable on 10 # the link of the actual chrome (or chromium) executable on
(...skipping 3055 matching lines...) Expand 10 before | Expand all | Expand 10 after
3066 'dbghelp.dll', 3066 'dbghelp.dll',
3067 'dwmapi.dll', 3067 'dwmapi.dll',
3068 'uxtheme.dll', 3068 'uxtheme.dll',
3069 'ole32.dll', 3069 'ole32.dll',
3070 'oleaut32.dll', 3070 'oleaut32.dll',
3071 ], 3071 ],
3072 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib', 3072 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib',
3073 'ProgramDatabaseFile': '$(OutDir)\\chrome_exe.pdb', 3073 'ProgramDatabaseFile': '$(OutDir)\\chrome_exe.pdb',
3074 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself. 3074 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself.
3075 'SubSystem': '2', 3075 'SubSystem': '2',
3076 'StackReserveSize': '2097152',
3076 }, 3077 },
3077 'VCManifestTool': { 3078 'VCManifestTool': {
3078 'AdditionalManifestFiles': '$(ProjectDir)\\app\\chrome.exe.manifes t', 3079 'AdditionalManifestFiles': '$(ProjectDir)\\app\\chrome.exe.manifes t',
3079 }, 3080 },
3080 }, 3081 },
3081 'actions': [ 3082 'actions': [
3082 { 3083 {
3083 'action_name': 'version', 3084 'action_name': 'version',
3084 'variables': { 3085 'variables': {
3085 'version_py': 'tools/build/version.py', 3086 'version_py': 'tools/build/version.py',
(...skipping 2104 matching lines...) Expand 10 before | Expand all | Expand 10 after
5190 # Use outputs of this action as inputs for the main target build. 5191 # Use outputs of this action as inputs for the main target build.
5191 # Seems as a misnomer but makes this happy on Linux (scons). 5192 # Seems as a misnomer but makes this happy on Linux (scons).
5192 'process_outputs_as_sources': 1, 5193 'process_outputs_as_sources': 1,
5193 }, 5194 },
5194 ], # 'actions' 5195 ], # 'actions'
5195 }, 5196 },
5196 ] 5197 ]
5197 }], 5198 }],
5198 ], # 'conditions' 5199 ], # 'conditions'
5199 } 5200 }
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