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

Side by Side Diff: build/standalone.gypi

Issue 17814002: Provide no-pic compilation option on android for x86 atom to improve performance (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 7 years, 6 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/android.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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 }, { 74 }, {
75 'want_separate_host_toolset': 0, 75 'want_separate_host_toolset': 0,
76 }], 76 }],
77 ], 77 ],
78 # Default ARM variable settings. 78 # Default ARM variable settings.
79 'armv7%': 'default', 79 'armv7%': 'default',
80 'arm_neon%': 0, 80 'arm_neon%': 0,
81 'arm_fpu%': 'vfpv3', 81 'arm_fpu%': 'vfpv3',
82 'arm_float_abi%': 'default', 82 'arm_float_abi%': 'default',
83 'arm_thumb': 'default', 83 'arm_thumb': 'default',
84 #Default IA32 variable settings.
85 'atom%': 'default',
84 }, 86 },
85 'target_defaults': { 87 'target_defaults': {
86 'default_configuration': 'Debug', 88 'default_configuration': 'Debug',
87 'configurations': { 89 'configurations': {
88 'Debug': { 90 'Debug': {
89 'cflags': [ '-g', '-O0' ], 91 'cflags': [ '-g', '-O0' ],
90 }, 92 },
91 'Release': { 93 'Release': {
92 # Xcode insists on this empty entry. 94 # Xcode insists on this empty entry.
93 }, 95 },
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 }, 218 },
217 'target_conditions': [ 219 'target_conditions': [
218 ['_type!="static_library"', { 220 ['_type!="static_library"', {
219 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, 221 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']},
220 }], 222 }],
221 ], # target_conditions 223 ], # target_conditions
222 }, # target_defaults 224 }, # target_defaults
223 }], # OS=="mac" 225 }], # OS=="mac"
224 ], 226 ],
225 } 227 }
OLDNEW
« no previous file with comments | « build/android.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698