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

Side by Side Diff: tools/gyp/v8.gyp

Issue 1124293002: Shard v8_base.lib on Windows to avoid 2G .lib limit (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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
« 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 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 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 1268 matching lines...) Expand 10 before | Expand all | Expand 10 after
1279 '../../src/ic/ppc/ic-ppc.cc', 1279 '../../src/ic/ppc/ic-ppc.cc',
1280 '../../src/ic/ppc/ic-compiler-ppc.cc', 1280 '../../src/ic/ppc/ic-compiler-ppc.cc',
1281 '../../src/ic/ppc/stub-cache-ppc.cc', 1281 '../../src/ic/ppc/stub-cache-ppc.cc',
1282 ], 1282 ],
1283 }], 1283 }],
1284 ['OS=="win"', { 1284 ['OS=="win"', {
1285 'variables': { 1285 'variables': {
1286 'gyp_generators': '<!(echo $GYP_GENERATORS)', 1286 'gyp_generators': '<!(echo $GYP_GENERATORS)',
1287 }, 1287 },
1288 'msvs_disabled_warnings': [4351, 4355, 4800], 1288 'msvs_disabled_warnings': [4351, 4355, 4800],
1289 # When building Official, the .lib is too large and exceeds the 2G
1290 # limit. This breaks it into multiple pieces to avoid the limit.
1291 # See http://crbug.com/485155.
1292 'msvs_shard': 4,
1289 }], 1293 }],
1290 ['component=="shared_library"', { 1294 ['component=="shared_library"', {
1291 'defines': [ 1295 'defines': [
1292 'BUILDING_V8_SHARED', 1296 'BUILDING_V8_SHARED',
1293 'V8_SHARED', 1297 'V8_SHARED',
1294 ], 1298 ],
1295 }], 1299 }],
1296 ['v8_postmortem_support=="true"', { 1300 ['v8_postmortem_support=="true"', {
1297 'sources': [ 1301 'sources': [
1298 '<(SHARED_INTERMEDIATE_DIR)/debug-support.cc', 1302 '<(SHARED_INTERMEDIATE_DIR)/debug-support.cc',
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after
1847 }], 1851 }],
1848 ['want_separate_host_toolset==1', { 1852 ['want_separate_host_toolset==1', {
1849 'toolsets': ['host'], 1853 'toolsets': ['host'],
1850 }, { 1854 }, {
1851 'toolsets': ['target'], 1855 'toolsets': ['target'],
1852 }], 1856 }],
1853 ], 1857 ],
1854 }, 1858 },
1855 ], 1859 ],
1856 } 1860 }
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