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