OLD | NEW |
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 'dependencies': [ | 5 'dependencies': [ |
6 '<(chrome_dll_project)', | 6 '<(chrome_dll_project)', |
7 '../chrome.gyp:chrome', | 7 '../chrome.gyp:chrome', |
8 '../chrome.gyp:chrome_nacl_win64', | 8 '../chrome.gyp:chrome_nacl_win64', |
9 '../chrome.gyp:default_extensions', | 9 '../chrome.gyp:default_extensions', |
10 '../chrome.gyp:setup', | 10 '../chrome.gyp:setup', |
(...skipping 29 matching lines...) Expand all Loading... |
40 'msvs_precompiled_source': '', | 40 'msvs_precompiled_source': '', |
41 'msvs_settings': { | 41 'msvs_settings': { |
42 'VCCLCompilerTool': { | 42 'VCCLCompilerTool': { |
43 'EnableIntrinsicFunctions': 'true', | 43 'EnableIntrinsicFunctions': 'true', |
44 'BufferSecurityCheck': 'false', | 44 'BufferSecurityCheck': 'false', |
45 'BasicRuntimeChecks': '0', | 45 'BasicRuntimeChecks': '0', |
46 'ExceptionHandling': '0', | 46 'ExceptionHandling': '0', |
47 }, | 47 }, |
48 'VCLinkerTool': { | 48 'VCLinkerTool': { |
49 'OutputFile': '<(output_dir)/mini_installer.exe', | 49 'OutputFile': '<(output_dir)/mini_installer.exe', |
| 50 'ProgramDatabaseFile': '<(output_dir)/mini_installer.pdb', |
| 51 'MapFileName': '<(output_dir)/mini_installer.map', |
50 'RandomizedBaseAddress': '1', | 52 'RandomizedBaseAddress': '1', |
51 'DataExecutionPrevention': '0', | 53 'DataExecutionPrevention': '0', |
52 'AdditionalLibraryDirectories': [ | 54 'AdditionalLibraryDirectories': [ |
53 '<(DEPTH)/third_party/platformsdk_win7/files/Lib', | 55 '<(DEPTH)/third_party/platformsdk_win7/files/Lib', |
54 '<(PRODUCT_DIR)/lib' | 56 '<(PRODUCT_DIR)/lib' |
55 ], | 57 ], |
56 'DelayLoadDLLs': [], | 58 'DelayLoadDLLs': [], |
57 'EntryPointSymbol': 'MainEntryPoint', | 59 'EntryPointSymbol': 'MainEntryPoint', |
58 'GenerateMapFile': 'true', | 60 'GenerateMapFile': 'true', |
59 'IgnoreAllDefaultLibraries': 'true', | 61 'IgnoreAllDefaultLibraries': 'true', |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 'variables': { | 228 'variables': { |
227 'branding_dir': '../app/theme/google_chrome', | 229 'branding_dir': '../app/theme/google_chrome', |
228 }, | 230 }, |
229 }, { # else branding!="Chrome" | 231 }, { # else branding!="Chrome" |
230 'variables': { | 232 'variables': { |
231 'branding_dir': '../app/theme/chromium', | 233 'branding_dir': '../app/theme/chromium', |
232 }, | 234 }, |
233 }], | 235 }], |
234 ], | 236 ], |
235 } | 237 } |
OLD | NEW |