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

Side by Side Diff: build/standalone.gypi

Issue 10268010: Clean up Makefile, enable MIPS cross-compilation (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: fix nits Created 8 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 | Annotate | Revision Log
« no previous file with comments | « build/mipsu.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 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 'werror%': '-Werror', 64 'werror%': '-Werror',
65 'conditions': [ 65 'conditions': [
66 ['(v8_target_arch=="arm" and host_arch!="arm") or \ 66 ['(v8_target_arch=="arm" and host_arch!="arm") or \
67 (v8_target_arch=="mips" and host_arch!="mips") or \ 67 (v8_target_arch=="mips" and host_arch!="mips") or \
68 (v8_target_arch=="x64" and host_arch!="x64")', { 68 (v8_target_arch=="x64" and host_arch!="x64")', {
69 'want_separate_host_toolset': 1, 69 'want_separate_host_toolset': 1,
70 }, { 70 }, {
71 'want_separate_host_toolset': 0, 71 'want_separate_host_toolset': 0,
72 }], 72 }],
73 ], 73 ],
74 # Default ARM variable settings.
75 'armv7%': 1,
76 'arm_neon%': 0,
77 'arm_fpu%': 'vfpv3',
74 }, 78 },
75 'target_defaults': { 79 'target_defaults': {
76 'default_configuration': 'Debug', 80 'default_configuration': 'Debug',
77 'configurations': { 81 'configurations': {
78 'Debug': { 82 'Debug': {
79 'cflags': [ '-g', '-O0' ], 83 'cflags': [ '-g', '-O0' ],
80 }, 84 },
81 }, 85 },
82 }, 86 },
83 'conditions': [ 87 'conditions': [
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 }, 202 },
199 'target_conditions': [ 203 'target_conditions': [
200 ['_type!="static_library"', { 204 ['_type!="static_library"', {
201 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, 205 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']},
202 }], 206 }],
203 ], # target_conditions 207 ], # target_conditions
204 }, # target_defaults 208 }, # target_defaults
205 }], # OS=="mac" 209 }], # OS=="mac"
206 ], 210 ],
207 } 211 }
OLDNEW
« no previous file with comments | « build/mipsu.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698