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

Side by Side Diff: Makefile

Issue 293743005: Introduce x87 port (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: rebase Created 6 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
« no previous file with comments | « AUTHORS ('k') | Makefile.android » ('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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 # - "nacl" : cross-compile for Native Client (ia32 and x64) 210 # - "nacl" : cross-compile for Native Client (ia32 and x64)
211 # - default (no target specified): build all DEFAULT_ARCHES and MODES 211 # - default (no target specified): build all DEFAULT_ARCHES and MODES
212 # - "check": build all targets and run all tests 212 # - "check": build all targets and run all tests
213 # - "<arch>.clean" for any <arch> in ARCHES 213 # - "<arch>.clean" for any <arch> in ARCHES
214 # - "clean": clean all ARCHES 214 # - "clean": clean all ARCHES
215 215
216 # ----------------- internal stuff ------------------------ 216 # ----------------- internal stuff ------------------------
217 217
218 # Architectures and modes to be compiled. Consider these to be internal 218 # Architectures and modes to be compiled. Consider these to be internal
219 # variables, don't override them (use the targets instead). 219 # variables, don't override them (use the targets instead).
220 ARCHES = ia32 x64 arm arm64 mips mipsel 220 ARCHES = ia32 x64 arm arm64 mips mipsel x87
221 DEFAULT_ARCHES = ia32 x64 arm 221 DEFAULT_ARCHES = ia32 x64 arm
222 MODES = release debug optdebug 222 MODES = release debug optdebug
223 DEFAULT_MODES = release debug 223 DEFAULT_MODES = release debug
224 ANDROID_ARCHES = android_ia32 android_arm android_arm64 android_mipsel 224 ANDROID_ARCHES = android_ia32 android_arm android_arm64 android_mipsel android_x 87
225 NACL_ARCHES = nacl_ia32 nacl_x64 225 NACL_ARCHES = nacl_ia32 nacl_x64
226 226
227 # List of files that trigger Makefile regeneration: 227 # List of files that trigger Makefile regeneration:
228 GYPFILES = build/all.gyp build/features.gypi build/standalone.gypi \ 228 GYPFILES = build/all.gyp build/features.gypi build/standalone.gypi \
229 build/toolchain.gypi samples/samples.gyp src/d8.gyp \ 229 build/toolchain.gypi samples/samples.gyp src/d8.gyp \
230 test/cctest/cctest.gyp tools/gyp/v8.gyp 230 test/cctest/cctest.gyp tools/gyp/v8.gyp
231 231
232 # If vtunejit=on, the v8vtune.gyp will be appended. 232 # If vtunejit=on, the v8vtune.gyp will be appended.
233 ifeq ($(vtunejit), on) 233 ifeq ($(vtunejit), on)
234 GYPFILES += src/third_party/vtune/v8vtune.gyp 234 GYPFILES += src/third_party/vtune/v8vtune.gyp
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
461 rm -f gtags.files GPATH GRTAGS GSYMS GTAGS 461 rm -f gtags.files GPATH GRTAGS GSYMS GTAGS
462 462
463 # Dependencies. 463 # Dependencies.
464 # Remember to keep these in sync with the DEPS file. 464 # Remember to keep these in sync with the DEPS file.
465 dependencies: 465 dependencies:
466 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \ 466 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \
467 --revision 1831 467 --revision 1831
468 svn checkout --force \ 468 svn checkout --force \
469 https://src.chromium.org/chrome/trunk/deps/third_party/icu46 \ 469 https://src.chromium.org/chrome/trunk/deps/third_party/icu46 \
470 third_party/icu --revision 258359 470 third_party/icu --revision 258359
OLDNEW
« no previous file with comments | « AUTHORS ('k') | Makefile.android » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698