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

Side by Side Diff: Source/modules/modules.gyp

Issue 1288093005: Shard modules target when using win_z7 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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 | Annotate | Revision Log
« 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 # 1 #
2 # Copyright (C) 2013 Google Inc. All rights reserved. 2 # Copyright (C) 2013 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 '<(DEPTH)/url/url.gyp:url_lib', 73 '<(DEPTH)/url/url.gyp:url_lib',
74 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', 74 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8',
75 ], 75 ],
76 }, { 76 }, {
77 'type': 'static_library', 77 'type': 'static_library',
78 'dependencies': [ 78 'dependencies': [
79 '../core/core.gyp:webcore', 79 '../core/core.gyp:webcore',
80 ], 80 ],
81 'conditions': [ 81 'conditions': [
82 # Shard this target into parts to work around linker limitations. 82 # Shard this target into parts to work around linker limitations.
83 ['OS=="win" and buildtype=="Official"', { 83 ['OS=="win" and (buildtype=="Official" or (fastbuild==0 and win_z7==1) )', {
84 'msvs_shard': 4, 84 'msvs_shard': 4,
85 }], 85 }],
86 ], 86 ],
87 }] 87 }]
88 ], 88 ],
89 # Disable c4267 warnings until we fix size_t to int truncations. 89 # Disable c4267 warnings until we fix size_t to int truncations.
90 'msvs_disabled_warnings': [ 4267, 4334, ], 90 'msvs_disabled_warnings': [ 4267, 4334, ],
91 }, 91 },
92 { 92 {
93 # GN version: //third_party/WebKit/Source/modules:modules_testing 93 # GN version: //third_party/WebKit/Source/modules:modules_testing
(...skipping 18 matching lines...) Expand all
112 '<(DEPTH)/gin/gin.gyp:gin', 112 '<(DEPTH)/gin/gin.gyp:gin',
113 ], 113 ],
114 }, { 114 }, {
115 'dependencies': [ 115 'dependencies': [
116 '../core/core.gyp:webcore', 116 '../core/core.gyp:webcore',
117 ], 117 ],
118 }], 118 }],
119 ], 119 ],
120 }], 120 }],
121 } 121 }
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