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

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

Issue 11384003: Make all pdb file names follow the same naming convention. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 1 month 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
« no previous file with comments | « chrome/chrome_syzygy.gyp ('k') | chrome/test/functional/stress.py » ('j') | 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:app_host', 7 '../chrome.gyp:app_host',
8 '../chrome.gyp:chrome', 8 '../chrome.gyp:chrome',
9 '../chrome.gyp:chrome_nacl_win64', 9 '../chrome.gyp:chrome_nacl_win64',
10 '../chrome.gyp:default_extensions', 10 '../chrome.gyp:default_extensions',
(...skipping 30 matching lines...) Expand all
41 'msvs_precompiled_source': '', 41 'msvs_precompiled_source': '',
42 'msvs_settings': { 42 'msvs_settings': {
43 'VCCLCompilerTool': { 43 'VCCLCompilerTool': {
44 'EnableIntrinsicFunctions': 'true', 44 'EnableIntrinsicFunctions': 'true',
45 'BufferSecurityCheck': 'false', 45 'BufferSecurityCheck': 'false',
46 'BasicRuntimeChecks': '0', 46 'BasicRuntimeChecks': '0',
47 'ExceptionHandling': '0', 47 'ExceptionHandling': '0',
48 }, 48 },
49 'VCLinkerTool': { 49 'VCLinkerTool': {
50 'OutputFile': '<(output_dir)/mini_installer.exe', 50 'OutputFile': '<(output_dir)/mini_installer.exe',
51 'ProgramDatabaseFile': '<(output_dir)/mini_installer.pdb',
52 'MapFileName': '<(output_dir)/mini_installer.map', 51 'MapFileName': '<(output_dir)/mini_installer.map',
53 'RandomizedBaseAddress': '1', 52 'RandomizedBaseAddress': '1',
54 'DataExecutionPrevention': '0', 53 'DataExecutionPrevention': '0',
55 'AdditionalLibraryDirectories': [ 54 'AdditionalLibraryDirectories': [
56 '<(DEPTH)/third_party/platformsdk_win7/files/Lib', 55 '<(DEPTH)/third_party/platformsdk_win7/files/Lib',
57 '<(PRODUCT_DIR)/lib' 56 '<(PRODUCT_DIR)/lib'
58 ], 57 ],
59 'DelayLoadDLLs': [], 58 'DelayLoadDLLs': [],
60 'EntryPointSymbol': 'MainEntryPoint', 59 'EntryPointSymbol': 'MainEntryPoint',
61 'GenerateMapFile': 'true', 60 'GenerateMapFile': 'true',
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 'variables': { 231 'variables': {
233 'branding_dir': '../app/theme/google_chrome', 232 'branding_dir': '../app/theme/google_chrome',
234 }, 233 },
235 }, { # else branding!="Chrome" 234 }, { # else branding!="Chrome"
236 'variables': { 235 'variables': {
237 'branding_dir': '../app/theme/chromium', 236 'branding_dir': '../app/theme/chromium',
238 }, 237 },
239 }], 238 }],
240 ], 239 ],
241 } 240 }
OLDNEW
« no previous file with comments | « chrome/chrome_syzygy.gyp ('k') | chrome/test/functional/stress.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698