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

Side by Side Diff: test/cctest/cctest.gyp

Issue 8052031: Add /bigobj parameter to cctest to make MSVS happy. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: added output directory change from issue 8055031 Created 9 years, 2 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 | « build/common.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 2011 the V8 project authors. All rights reserved. 1 # Copyright 2011 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 }], 127 }],
128 [ 'OS=="mac"', { 128 [ 'OS=="mac"', {
129 'sources': [ 129 'sources': [
130 'test-platform-macos.cc', 130 'test-platform-macos.cc',
131 ], 131 ],
132 }], 132 }],
133 [ 'OS=="win"', { 133 [ 'OS=="win"', {
134 'sources': [ 134 'sources': [
135 'test-platform-win32.cc', 135 'test-platform-win32.cc',
136 ], 136 ],
137 'msvs_settings': {
138 'VCCLCompilerTool': {
139 # MSVS wants this for gay-{precision,shortest}.cc.
140 'AdditionalOptions': ['/bigobj'],
141 },
142 },
137 }], 143 }],
138 ['component=="shared_library"', { 144 ['component=="shared_library"', {
139 # cctest can't be built against a shared library, so we need to 145 # cctest can't be built against a shared library, so we need to
140 # depend on the underlying static target in that case. 146 # depend on the underlying static target in that case.
141 'conditions': [ 147 'conditions': [
142 ['v8_use_snapshot=="true"', { 148 ['v8_use_snapshot=="true"', {
143 'dependencies': ['../../tools/gyp/v8.gyp:v8_snapshot'], 149 'dependencies': ['../../tools/gyp/v8.gyp:v8_snapshot'],
144 }, 150 },
145 { 151 {
146 'dependencies': ['../../tools/gyp/v8.gyp:v8_nosnapshot'], 152 'dependencies': ['../../tools/gyp/v8.gyp:v8_nosnapshot'],
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 '<@(_outputs)', 188 '<@(_outputs)',
183 'TEST', # type 189 'TEST', # type
184 'off', # compression 190 'off', # compression
185 '<@(file_list)', 191 '<@(file_list)',
186 ], 192 ],
187 } 193 }
188 ], 194 ],
189 }, 195 },
190 ], 196 ],
191 } 197 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698