| OLD | NEW |
| 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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 # - "nacl" : cross-compile for Native Client (ia32 and x64) | 213 # - "nacl" : cross-compile for Native Client (ia32 and x64) |
| 214 # - default (no target specified): build all DEFAULT_ARCHES and MODES | 214 # - default (no target specified): build all DEFAULT_ARCHES and MODES |
| 215 # - "check": build all targets and run all tests | 215 # - "check": build all targets and run all tests |
| 216 # - "<arch>.clean" for any <arch> in ARCHES | 216 # - "<arch>.clean" for any <arch> in ARCHES |
| 217 # - "clean": clean all ARCHES | 217 # - "clean": clean all ARCHES |
| 218 | 218 |
| 219 # ----------------- internal stuff ------------------------ | 219 # ----------------- internal stuff ------------------------ |
| 220 | 220 |
| 221 # Architectures and modes to be compiled. Consider these to be internal | 221 # Architectures and modes to be compiled. Consider these to be internal |
| 222 # variables, don't override them (use the targets instead). | 222 # variables, don't override them (use the targets instead). |
| 223 ARCHES = ia32 x64 arm arm64 mips mipsel x87 | 223 ARCHES = ia32 x64 x32 arm arm64 mips mipsel x87 |
| 224 DEFAULT_ARCHES = ia32 x64 arm | 224 DEFAULT_ARCHES = ia32 x64 arm |
| 225 MODES = release debug optdebug | 225 MODES = release debug optdebug |
| 226 DEFAULT_MODES = release debug | 226 DEFAULT_MODES = release debug |
| 227 ANDROID_ARCHES = android_ia32 android_arm android_arm64 android_mipsel android_x
87 | 227 ANDROID_ARCHES = android_ia32 android_arm android_arm64 android_mipsel android_x
87 |
| 228 NACL_ARCHES = nacl_ia32 nacl_x64 | 228 NACL_ARCHES = nacl_ia32 nacl_x64 |
| 229 | 229 |
| 230 # List of files that trigger Makefile regeneration: | 230 # List of files that trigger Makefile regeneration: |
| 231 GYPFILES = build/all.gyp build/features.gypi build/standalone.gypi \ | 231 GYPFILES = build/all.gyp build/features.gypi build/standalone.gypi \ |
| 232 build/toolchain.gypi samples/samples.gyp src/d8.gyp \ | 232 build/toolchain.gypi samples/samples.gyp src/d8.gyp \ |
| 233 test/cctest/cctest.gyp tools/gyp/v8.gyp | 233 test/cctest/cctest.gyp tools/gyp/v8.gyp |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 469 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \ | 469 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \ |
| 470 --revision 1831 | 470 --revision 1831 |
| 471 svn checkout --force \ | 471 svn checkout --force \ |
| 472 https://src.chromium.org/chrome/trunk/deps/third_party/icu46 \ | 472 https://src.chromium.org/chrome/trunk/deps/third_party/icu46 \ |
| 473 third_party/icu --revision 258359 | 473 third_party/icu --revision 258359 |
| 474 ( test -d buildtools || \ | 474 ( test -d buildtools || \ |
| 475 git clone https://chromium.googlesource.com/chromium/buildtools.git; \ | 475 git clone https://chromium.googlesource.com/chromium/buildtools.git; \ |
| 476 cd buildtools; \ | 476 cd buildtools; \ |
| 477 git fetch origin; \ | 477 git fetch origin; \ |
| 478 git checkout 5d89977ce55240995d1596fe420b818468f5ec37 ) | 478 git checkout 5d89977ce55240995d1596fe420b818468f5ec37 ) |
| OLD | NEW |