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 3069 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3080 'dbghelp.dll', | 3080 'dbghelp.dll', |
3081 'dwmapi.dll', | 3081 'dwmapi.dll', |
3082 'uxtheme.dll', | 3082 'uxtheme.dll', |
3083 'ole32.dll', | 3083 'ole32.dll', |
3084 'oleaut32.dll', | 3084 'oleaut32.dll', |
3085 ], | 3085 ], |
3086 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib', | 3086 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib', |
3087 'ProgramDatabaseFile': '$(OutDir)\\chrome_exe.pdb', | 3087 'ProgramDatabaseFile': '$(OutDir)\\chrome_exe.pdb', |
3088 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself. | 3088 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself. |
3089 'SubSystem': '2', | 3089 'SubSystem': '2', |
3090 'StackReserveSize': '2097152', | |
3091 }, | 3090 }, |
3092 'VCManifestTool': { | 3091 'VCManifestTool': { |
3093 'AdditionalManifestFiles': '$(ProjectDir)\\app\\chrome.exe.manifes
t', | 3092 'AdditionalManifestFiles': '$(ProjectDir)\\app\\chrome.exe.manifes
t', |
3094 }, | 3093 }, |
3095 }, | 3094 }, |
3096 'actions': [ | 3095 'actions': [ |
3097 { | 3096 { |
3098 'action_name': 'version', | 3097 'action_name': 'version', |
3099 'variables': { | 3098 'variables': { |
3100 'version_py': 'tools/build/version.py', | 3099 'version_py': 'tools/build/version.py', |
(...skipping 2106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5207 # Use outputs of this action as inputs for the main target build. | 5206 # Use outputs of this action as inputs for the main target build. |
5208 # Seems as a misnomer but makes this happy on Linux (scons). | 5207 # Seems as a misnomer but makes this happy on Linux (scons). |
5209 'process_outputs_as_sources': 1, | 5208 'process_outputs_as_sources': 1, |
5210 }, | 5209 }, |
5211 ], # 'actions' | 5210 ], # 'actions' |
5212 }, | 5211 }, |
5213 ] | 5212 ] |
5214 }], | 5213 }], |
5215 ], # 'conditions' | 5214 ], # 'conditions' |
5216 } | 5215 } |
OLD | NEW |