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

Side by Side Diff: gypfiles/toolchain.gypi

Issue 2155073002: Revert of Add force_dynamic_crt to build as static library but with /MD on windows (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « gypfiles/standalone.gypi ('k') | 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 2013 the V8 project authors. All rights reserved. 1 # Copyright 2013 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 1092 matching lines...) Expand 10 before | Expand all | Expand 10 after
1103 }], 1103 }],
1104 ], # conditions 1104 ], # conditions
1105 'configurations': { 1105 'configurations': {
1106 # Abstract configuration for v8_optimized_debug == 0. 1106 # Abstract configuration for v8_optimized_debug == 0.
1107 'DebugBase0': { 1107 'DebugBase0': {
1108 'abstract': 1, 1108 'abstract': 1,
1109 'msvs_settings': { 1109 'msvs_settings': {
1110 'VCCLCompilerTool': { 1110 'VCCLCompilerTool': {
1111 'Optimization': '0', 1111 'Optimization': '0',
1112 'conditions': [ 1112 'conditions': [
1113 ['component=="shared_library" or force_dynamic_crt==1', { 1113 ['component=="shared_library"', {
1114 'RuntimeLibrary': '3', # /MDd 1114 'RuntimeLibrary': '3', # /MDd
1115 }, { 1115 }, {
1116 'RuntimeLibrary': '1', # /MTd 1116 'RuntimeLibrary': '1', # /MTd
1117 }], 1117 }],
1118 ], 1118 ],
1119 }, 1119 },
1120 'VCLinkerTool': { 1120 'VCLinkerTool': {
1121 'LinkIncremental': '2', 1121 'LinkIncremental': '2',
1122 }, 1122 },
1123 }, 1123 },
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
1155 'abstract': 1, 1155 'abstract': 1,
1156 'msvs_settings': { 1156 'msvs_settings': {
1157 'VCCLCompilerTool': { 1157 'VCCLCompilerTool': {
1158 'Optimization': '2', 1158 'Optimization': '2',
1159 'InlineFunctionExpansion': '2', 1159 'InlineFunctionExpansion': '2',
1160 'EnableIntrinsicFunctions': 'true', 1160 'EnableIntrinsicFunctions': 'true',
1161 'FavorSizeOrSpeed': '0', 1161 'FavorSizeOrSpeed': '0',
1162 'StringPooling': 'true', 1162 'StringPooling': 'true',
1163 'BasicRuntimeChecks': '0', 1163 'BasicRuntimeChecks': '0',
1164 'conditions': [ 1164 'conditions': [
1165 ['component=="shared_library" or force_dynamic_crt==1', { 1165 ['component=="shared_library"', {
1166 'RuntimeLibrary': '3', #/MDd 1166 'RuntimeLibrary': '3', #/MDd
1167 }, { 1167 }, {
1168 'RuntimeLibrary': '1', #/MTd 1168 'RuntimeLibrary': '1', #/MTd
1169 }], 1169 }],
1170 ], 1170 ],
1171 }, 1171 },
1172 'VCLinkerTool': { 1172 'VCLinkerTool': {
1173 'LinkIncremental': '1', 1173 'LinkIncremental': '1',
1174 'OptimizeReferences': '2', 1174 'OptimizeReferences': '2',
1175 'EnableCOMDATFolding': '2', 1175 'EnableCOMDATFolding': '2',
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
1346 }], # OS=="mac" 1346 }], # OS=="mac"
1347 ['OS=="win"', { 1347 ['OS=="win"', {
1348 'msvs_settings': { 1348 'msvs_settings': {
1349 'VCCLCompilerTool': { 1349 'VCCLCompilerTool': {
1350 'Optimization': '2', 1350 'Optimization': '2',
1351 'InlineFunctionExpansion': '2', 1351 'InlineFunctionExpansion': '2',
1352 'EnableIntrinsicFunctions': 'true', 1352 'EnableIntrinsicFunctions': 'true',
1353 'FavorSizeOrSpeed': '0', 1353 'FavorSizeOrSpeed': '0',
1354 'StringPooling': 'true', 1354 'StringPooling': 'true',
1355 'conditions': [ 1355 'conditions': [
1356 ['component=="shared_library" or force_dynamic_crt==1', { 1356 ['component=="shared_library"', {
1357 'RuntimeLibrary': '2', #/MD 1357 'RuntimeLibrary': '2', #/MD
1358 }, { 1358 }, {
1359 'RuntimeLibrary': '0', #/MT 1359 'RuntimeLibrary': '0', #/MT
1360 }], 1360 }],
1361 ], 1361 ],
1362 }, 1362 },
1363 'VCLinkerTool': { 1363 'VCLinkerTool': {
1364 'LinkIncremental': '1', 1364 'LinkIncremental': '1',
1365 'OptimizeReferences': '2', 1365 'OptimizeReferences': '2',
1366 'EnableCOMDATFolding': '2', 1366 'EnableCOMDATFolding': '2',
(...skipping 24 matching lines...) Expand all
1391 ], 1391 ],
1392 }, 1392 },
1393 'Release_x64': { 1393 'Release_x64': {
1394 'inherit_from': ['ReleaseBase'], 1394 'inherit_from': ['ReleaseBase'],
1395 }, 1395 },
1396 }], 1396 }],
1397 ], 1397 ],
1398 }, # configurations 1398 }, # configurations
1399 }, # target_defaults 1399 }, # target_defaults
1400 } 1400 }
OLDNEW
« no previous file with comments | « gypfiles/standalone.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698