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

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: fixed Makefile 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=6
144 else 148 else
145 ifeq ($(armv7), true) 149 ifeq ($(armv7), true)
146 GYPFLAGS += -Darmv7=1 150 GYPFLAGS += -Darm_version=7
151 endif
147 endif 152 endif
148 endif 153 endif
149 # vfp2=off. Deprecated, use armfpu= 154 # vfp2=off. Deprecated, use armfpu=
150 # vfp3=off. Deprecated, use armfpu= 155 # vfp3=off. Deprecated, use armfpu=
151 ifeq ($(vfp3), off) 156 ifeq ($(vfp3), off)
152 GYPFLAGS += -Darm_fpu=vfp 157 GYPFLAGS += -Darm_fpu=vfp
153 endif 158 endif
154 # hardfp=on/off. Deprecated, use armfloatabi 159 # hardfp=on/off. Deprecated, use armfloatabi
155 ifeq ($(hardfp),on) 160 ifeq ($(hardfp),on)
156 GYPFLAGS += -Darm_float_abi=hard 161 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) 438 @$(OUTDIR)/ia32.release/d8 --dump-heap-constants >> $(DUMP_FILE)
434 439
435 # Dependencies. 440 # Dependencies.
436 # Remember to keep these in sync with the DEPS file. 441 # Remember to keep these in sync with the DEPS file.
437 dependencies: 442 dependencies:
438 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \ 443 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \
439 --revision 1685 444 --revision 1685
440 svn checkout --force \ 445 svn checkout --force \
441 https://src.chromium.org/chrome/trunk/deps/third_party/icu46 \ 446 https://src.chromium.org/chrome/trunk/deps/third_party/icu46 \
442 third_party/icu --revision 214189 447 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