| OLD | NEW |
| 1 { | 1 { |
| 2 'variables': { | 2 'variables': { |
| 3 'version_py': '<(DEPTH)/build/util/version.py', | 3 'version_py': '<(DEPTH)/build/util/version.py', |
| 4 'version_path': '../../chrome/VERSION', | 4 'version_path': '../../chrome/VERSION', |
| 5 'lastchange_path': '<(DEPTH)/build/util/LASTCHANGE', | 5 'lastchange_path': '<(DEPTH)/build/util/LASTCHANGE', |
| 6 # 'branding_dir' is set in the 'conditions' section at the bottom. | 6 # 'branding_dir' is set in the 'conditions' section at the bottom. |
| 7 'msvs_use_common_release': 0, | 7 'msvs_use_common_release': 0, |
| 8 'msvs_use_common_linker_extras': 0, | 8 'msvs_use_common_linker_extras': 0, |
| 9 'mini_installer_internal_deps%': 0, | 9 'mini_installer_internal_deps%': 0, |
| 10 'mini_installer_official_deps%': 0, | 10 'mini_installer_official_deps%': 0, |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 }, | 127 }, |
| 128 }, | 128 }, |
| 129 'Release_Base': { | 129 'Release_Base': { |
| 130 'includes': ['../../build/internal/release_defaults.gypi'], | 130 'includes': ['../../build/internal/release_defaults.gypi'], |
| 131 'msvs_settings': { | 131 'msvs_settings': { |
| 132 'VCCLCompilerTool': { | 132 'VCCLCompilerTool': { |
| 133 'EnableIntrinsicFunctions': 'true', | 133 'EnableIntrinsicFunctions': 'true', |
| 134 'BasicRuntimeChecks': '0', | 134 'BasicRuntimeChecks': '0', |
| 135 'BufferSecurityCheck': 'false', | 135 'BufferSecurityCheck': 'false', |
| 136 'ExceptionHandling': '0', | 136 'ExceptionHandling': '0', |
| 137 'WholeProgramOptimization': 'false', |
| 137 }, | 138 }, |
| 138 'VCLinkerTool': { | 139 'VCLinkerTool': { |
| 139 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 140 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 140 'Profile': 'false', # Conflicts with /FIXED | 141 'Profile': 'false', # Conflicts with /FIXED |
| 141 'AdditionalOptions': [ | 142 'AdditionalOptions': [ |
| 142 '/SAFESEH:NO', | 143 '/SAFESEH:NO', |
| 143 '/NXCOMPAT', | 144 '/NXCOMPAT', |
| 144 '/DYNAMICBASE:NO', | 145 '/DYNAMICBASE:NO', |
| 145 '/FIXED', | 146 '/FIXED', |
| 146 ], | 147 ], |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 'variables': { | 342 'variables': { |
| 342 'branding_dir': '../app/theme/google_chrome', | 343 'branding_dir': '../app/theme/google_chrome', |
| 343 }, | 344 }, |
| 344 }, { # else branding!="Chrome" | 345 }, { # else branding!="Chrome" |
| 345 'variables': { | 346 'variables': { |
| 346 'branding_dir': '../app/theme/chromium', | 347 'branding_dir': '../app/theme/chromium', |
| 347 }, | 348 }, |
| 348 }], | 349 }], |
| 349 ], | 350 ], |
| 350 } | 351 } |
| OLD | NEW |