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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 DEFAULT_MODES = release debug | 257 DEFAULT_MODES = release debug |
258 ANDROID_ARCHES = android_ia32 android_x64 android_arm android_arm64 \ | 258 ANDROID_ARCHES = android_ia32 android_x64 android_arm android_arm64 \ |
259 android_mipsel android_x87 | 259 android_mipsel android_x87 |
260 NACL_ARCHES = nacl_ia32 nacl_x64 | 260 NACL_ARCHES = nacl_ia32 nacl_x64 |
261 | 261 |
262 # List of files that trigger Makefile regeneration: | 262 # List of files that trigger Makefile regeneration: |
263 GYPFILES = third_party/icu/icu.gypi third_party/icu/icu.gyp \ | 263 GYPFILES = third_party/icu/icu.gypi third_party/icu/icu.gyp \ |
264 build/shim_headers.gypi build/features.gypi build/standalone.gypi \ | 264 build/shim_headers.gypi build/features.gypi build/standalone.gypi \ |
265 build/toolchain.gypi build/all.gyp build/mac/asan.gyp \ | 265 build/toolchain.gypi build/all.gyp build/mac/asan.gyp \ |
266 test/cctest/cctest.gyp test/fuzzer/fuzzer.gyp \ | 266 test/cctest/cctest.gyp test/fuzzer/fuzzer.gyp \ |
267 » test/unittests/unittests.gyp tools/gyp/v8.gyp \ | 267 » test/unittests/unittests.gyp src/v8.gyp \ |
268 tools/parser-shell.gyp testing/gmock.gyp testing/gtest.gyp \ | 268 tools/parser-shell.gyp testing/gmock.gyp testing/gtest.gyp \ |
269 buildtools/third_party/libc++abi/libc++abi.gyp \ | 269 buildtools/third_party/libc++abi/libc++abi.gyp \ |
270 buildtools/third_party/libc++/libc++.gyp samples/samples.gyp \ | 270 buildtools/third_party/libc++/libc++.gyp samples/samples.gyp \ |
271 src/third_party/vtune/v8vtune.gyp src/d8.gyp | 271 src/third_party/vtune/v8vtune.gyp src/d8.gyp |
272 | 272 |
273 # If vtunejit=on, the v8vtune.gyp will be appended. | 273 # If vtunejit=on, the v8vtune.gyp will be appended. |
274 ifeq ($(vtunejit), on) | 274 ifeq ($(vtunejit), on) |
275 GYPFILES += src/third_party/vtune/v8vtune.gyp | 275 GYPFILES += src/third_party/vtune/v8vtune.gyp |
276 endif | 276 endif |
277 # Generates all combinations of ARCHES and MODES, e.g. "ia32.release". | 277 # Generates all combinations of ARCHES and MODES, e.g. "ia32.release". |
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
513 tags: gtags.files $(wildcard $(shell cat gtags.files 2> /dev/null)) | 513 tags: gtags.files $(wildcard $(shell cat gtags.files 2> /dev/null)) |
514 @(ctags --version | grep 'Exuberant Ctags' >/dev/null) || \ | 514 @(ctags --version | grep 'Exuberant Ctags' >/dev/null) || \ |
515 (echo "Please install Exuberant Ctags (check 'ctags --version')"
>&2; false) | 515 (echo "Please install Exuberant Ctags (check 'ctags --version')"
>&2; false) |
516 ctags --fields=+l -L $< | 516 ctags --fields=+l -L $< |
517 | 517 |
518 tags.clean: | 518 tags.clean: |
519 rm -r tags | 519 rm -r tags |
520 | 520 |
521 dependencies builddeps: | 521 dependencies builddeps: |
522 $(error Use 'gclient sync' instead) | 522 $(error Use 'gclient sync' instead) |
OLD | NEW |