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

Side by Side Diff: Makefile

Issue 98543008: Switch armv7 setting to arm_version=7 in v8 gyp files (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: add arm_version makefile setting Created 7 years 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
« no previous file with comments | « no previous file | build/android.gypi » ('j') | 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 # i18nsupport=off 131 # i18nsupport=off
132 ifeq ($(i18nsupport), off) 132 ifeq ($(i18nsupport), off)
133 GYPFLAGS += -Dv8_enable_i18n_support=0 133 GYPFLAGS += -Dv8_enable_i18n_support=0
134 TESTFLAGS += --noi18n 134 TESTFLAGS += --noi18n
135 endif 135 endif
136 # deprecation_warnings=on 136 # deprecation_warnings=on
137 ifeq ($(deprecationwarnings), on) 137 ifeq ($(deprecationwarnings), on)
138 GYPFLAGS += -Dv8_deprecation_warnings=1 138 GYPFLAGS += -Dv8_deprecation_warnings=1
139 endif 139 endif
140 # arm specific flags. 140 # arm specific flags.
141 # armv7=false/true 141 # arm_version=<number | "default">
142 ifneq ($(strip $(arm_version)),)
143 GYPFLAGS += -Darm_version=$(arm_version)
144 else
145 # Deprecated (use arm_version instead): armv7=false/true
142 ifeq ($(armv7), false) 146 ifeq ($(armv7), false)
143 GYPFLAGS += -Darmv7=0 147 GYPFLAGS += -Darm_version=default
Jakob Kummerow 2013/12/11 11:28:24 IIUC, armv7=false used to result in armv6, so let'
144 else 148 else
145 ifeq ($(armv7), true) 149 ifeq ($(armv7), true)
146 GYPFLAGS += -Darmv7=1 150 GYPFLAGS += -Darm_version=7
147 endif 151 endif
148 endif 152 endif
149 # vfp2=off. Deprecated, use armfpu= 153 # vfp2=off. Deprecated, use armfpu=
150 # vfp3=off. Deprecated, use armfpu= 154 # vfp3=off. Deprecated, use armfpu=
151 ifeq ($(vfp3), off) 155 ifeq ($(vfp3), off)
152 GYPFLAGS += -Darm_fpu=vfp 156 GYPFLAGS += -Darm_fpu=vfp
153 endif 157 endif
154 # hardfp=on/off. Deprecated, use armfloatabi 158 # hardfp=on/off. Deprecated, use armfloatabi
155 ifeq ($(hardfp),on) 159 ifeq ($(hardfp),on)
156 GYPFLAGS += -Darm_float_abi=hard 160 GYPFLAGS += -Darm_float_abi=hard
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 @$(OUTDIR)/ia32.release/d8 --dump-heap-constants >> $(DUMP_FILE) 437 @$(OUTDIR)/ia32.release/d8 --dump-heap-constants >> $(DUMP_FILE)
434 438
435 # Dependencies. 439 # Dependencies.
436 # Remember to keep these in sync with the DEPS file. 440 # Remember to keep these in sync with the DEPS file.
437 dependencies: 441 dependencies:
438 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \ 442 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \
439 --revision 1685 443 --revision 1685
440 svn checkout --force \ 444 svn checkout --force \
441 https://src.chromium.org/chrome/trunk/deps/third_party/icu46 \ 445 https://src.chromium.org/chrome/trunk/deps/third_party/icu46 \
442 third_party/icu --revision 214189 446 third_party/icu --revision 214189
OLDNEW
« no previous file with comments | « no previous file | build/android.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698