OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |