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

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

Issue 10407006: P0 - Fix output locations of syzygy versions of mini_installer's PDB and Map files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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) 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
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
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 }
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