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

Side by Side Diff: build/common.gypi

Issue 7574008: Specify stack size for win64 when linking d8. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Removed changed concerning d8 in gyp build. Created 9 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 | « SConstruct ('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 2010 the V8 project authors. All rights reserved. 1 # Copyright 2010 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 12 matching lines...) Expand all
23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 27
28 { 28 {
29 'variables': { 29 'variables': {
30 'library%': 'static_library', 30 'library%': 'static_library',
31 'component%': 'static_library', 31 'component%': 'static_library',
32 'visibility%': 'hidden', 32 'visibility%': 'hidden',
33 'msvs_multi_core_compile%': '1',
33 'variables': { 34 'variables': {
34 'conditions': [ 35 'conditions': [
35 [ 'OS=="linux" or OS=="freebsd" or OS=="openbsd"', { 36 [ 'OS=="linux" or OS=="freebsd" or OS=="openbsd"', {
36 # This handles the Linux platforms we generally deal with. Anything 37 # This handles the Linux platforms we generally deal with. Anything
37 # else gets passed through, which probably won't work very well; such 38 # else gets passed through, which probably won't work very well; such
38 # hosts should pass an explicit target_arch to gyp. 39 # hosts should pass an explicit target_arch to gyp.
39 'host_arch%': 40 'host_arch%':
40 '<!(uname -m | sed -e "s/i.86/ia32/;s/x86_64/x64/;s/amd64/x64/;s/arm .*/arm/")', 41 '<!(uname -m | sed -e "s/i.86/ia32/;s/x86_64/x64/;s/amd64/x64/;s/arm .*/arm/")',
41 }, { # OS!="linux" and OS!="freebsd" and OS!="openbsd" 42 }, { # OS!="linux" and OS!="freebsd" and OS!="openbsd"
42 'host_arch%': 'ia32', 43 'host_arch%': 'ia32',
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 }, 175 },
175 'target_conditions': [ 176 'target_conditions': [
176 ['_type!="static_library"', { 177 ['_type!="static_library"', {
177 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, 178 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']},
178 }], 179 }],
179 ], # target_conditions 180 ], # target_conditions
180 }, # target_defaults 181 }, # target_defaults
181 }], # OS=="mac" 182 }], # OS=="mac"
182 ], 183 ],
183 } 184 }
OLDNEW
« no previous file with comments | « SConstruct ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698