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