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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 MODES = release debug optdebug | 244 MODES = release debug optdebug |
245 DEFAULT_MODES = release debug | 245 DEFAULT_MODES = release debug |
246 ANDROID_ARCHES = android_ia32 android_x64 android_arm android_arm64 \ | 246 ANDROID_ARCHES = android_ia32 android_x64 android_arm android_arm64 \ |
247 android_mipsel android_x87 | 247 android_mipsel android_x87 |
248 NACL_ARCHES = nacl_ia32 nacl_x64 | 248 NACL_ARCHES = nacl_ia32 nacl_x64 |
249 | 249 |
250 # List of files that trigger Makefile regeneration: | 250 # List of files that trigger Makefile regeneration: |
251 GYPFILES = third_party/icu/icu.gypi third_party/icu/icu.gyp \ | 251 GYPFILES = third_party/icu/icu.gypi third_party/icu/icu.gyp \ |
252 build/shim_headers.gypi build/features.gypi build/standalone.gypi \ | 252 build/shim_headers.gypi build/features.gypi build/standalone.gypi \ |
253 build/toolchain.gypi build/all.gyp build/mac/asan.gyp \ | 253 build/toolchain.gypi build/all.gyp build/mac/asan.gyp \ |
254 » test/cctest/cctest.gyp \ | 254 » test/cctest/cctest.gyp test/fuzzer/fuzzer.gyp \ |
255 test/unittests/unittests.gyp tools/gyp/v8.gyp \ | 255 test/unittests/unittests.gyp tools/gyp/v8.gyp \ |
256 tools/parser-shell.gyp testing/gmock.gyp testing/gtest.gyp \ | 256 tools/parser-shell.gyp testing/gmock.gyp testing/gtest.gyp \ |
257 buildtools/third_party/libc++abi/libc++abi.gyp \ | 257 buildtools/third_party/libc++abi/libc++abi.gyp \ |
258 buildtools/third_party/libc++/libc++.gyp samples/samples.gyp \ | 258 buildtools/third_party/libc++/libc++.gyp samples/samples.gyp \ |
259 src/third_party/vtune/v8vtune.gyp src/d8.gyp | 259 src/third_party/vtune/v8vtune.gyp src/d8.gyp |
260 | 260 |
261 # If vtunejit=on, the v8vtune.gyp will be appended. | 261 # If vtunejit=on, the v8vtune.gyp will be appended. |
262 ifeq ($(vtunejit), on) | 262 ifeq ($(vtunejit), on) |
263 GYPFILES += src/third_party/vtune/v8vtune.gyp | 263 GYPFILES += src/third_party/vtune/v8vtune.gyp |
264 endif | 264 endif |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
491 # We need to manually set the stack limit here, to work around bugs in | 491 # We need to manually set the stack limit here, to work around bugs in |
492 # gmake-3.81 and global-5.7.1 on recent 64-bit Linux systems. | 492 # gmake-3.81 and global-5.7.1 on recent 64-bit Linux systems. |
493 GPATH GRTAGS GSYMS GTAGS: gtags.files $(shell cat gtags.files 2> /dev/null) | 493 GPATH GRTAGS GSYMS GTAGS: gtags.files $(shell cat gtags.files 2> /dev/null) |
494 @bash -c 'ulimit -s 10240 && GTAGSFORCECPP=yes gtags -i -q -f $<' | 494 @bash -c 'ulimit -s 10240 && GTAGSFORCECPP=yes gtags -i -q -f $<' |
495 | 495 |
496 gtags.clean: | 496 gtags.clean: |
497 rm -f gtags.files GPATH GRTAGS GSYMS GTAGS | 497 rm -f gtags.files GPATH GRTAGS GSYMS GTAGS |
498 | 498 |
499 dependencies builddeps: | 499 dependencies builddeps: |
500 $(error Use 'gclient sync' instead) | 500 $(error Use 'gclient sync' instead) |
OLD | NEW |