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

Side by Side Diff: build/standalone.gypi

Issue 10778033: Build V8 for Android IA (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 8 years, 5 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
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 'target_arch%': '<(target_arch)', 61 'target_arch%': '<(target_arch)',
62 'v8_target_arch%': '<(target_arch)', 62 'v8_target_arch%': '<(target_arch)',
63 }, 63 },
64 'host_arch%': '<(host_arch)', 64 'host_arch%': '<(host_arch)',
65 'target_arch%': '<(target_arch)', 65 'target_arch%': '<(target_arch)',
66 'v8_target_arch%': '<(v8_target_arch)', 66 'v8_target_arch%': '<(v8_target_arch)',
67 'werror%': '-Werror', 67 'werror%': '-Werror',
68 'conditions': [ 68 'conditions': [
69 ['(v8_target_arch=="arm" and host_arch!="arm") or \ 69 ['(v8_target_arch=="arm" and host_arch!="arm") or \
70 (v8_target_arch=="mipsel" and host_arch!="mipsel") or \ 70 (v8_target_arch=="mipsel" and host_arch!="mipsel") or \
71 (v8_target_arch=="x64" and host_arch!="x64")', { 71 (v8_target_arch=="x64" and host_arch!="x64") or \
72 (OS=="android")', {
72 'want_separate_host_toolset': 1, 73 'want_separate_host_toolset': 1,
73 }, { 74 }, {
74 'want_separate_host_toolset': 0, 75 'want_separate_host_toolset': 0,
75 }], 76 }],
76 ], 77 ],
77 # Default ARM variable settings. 78 # Default ARM variable settings.
78 'armv7%': 1, 79 'armv7%': 1,
79 'arm_neon%': 0, 80 'arm_neon%': 0,
80 'arm_fpu%': 'vfpv3', 81 'arm_fpu%': 'vfpv3',
81 }, 82 },
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 }, 211 },
211 'target_conditions': [ 212 'target_conditions': [
212 ['_type!="static_library"', { 213 ['_type!="static_library"', {
213 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, 214 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']},
214 }], 215 }],
215 ], # target_conditions 216 ], # target_conditions
216 }, # target_defaults 217 }, # target_defaults
217 }], # OS=="mac" 218 }], # OS=="mac"
218 ], 219 ],
219 } 220 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698