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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
365 --timeout=600 --nopresubmit --noi18n \ | 365 --timeout=600 --nopresubmit --noi18n \ |
366 --command-prefix="tools/nacl-run.py" | 366 --command-prefix="tools/nacl-run.py" |
367 | 367 |
368 $(addsuffix .check, $(NACL_ARCHES)): \ | 368 $(addsuffix .check, $(NACL_ARCHES)): \ |
369 $(addprefix $$(basename $$@).,$(MODES)).check | 369 $(addprefix $$(basename $$@).,$(MODES)).check |
370 | 370 |
371 native.check: native | 371 native.check: native |
372 @tools/run-tests.py $(TESTJOBS) --outdir=$(OUTDIR)/native \ | 372 @tools/run-tests.py $(TESTJOBS) --outdir=$(OUTDIR)/native \ |
373 --arch-and-mode=. $(TESTFLAGS) | 373 --arch-and-mode=. $(TESTFLAGS) |
374 | 374 |
375 FASTTESTMODES = ia32.release,x64.release,ia32.optdebug,x64.optdebug,arm.optdebug
,a64.release | 375 SUPERFASTTESTMODES = ia32.release |
| 376 FASTTESTMODES = $(SUPERFASTTESTMODES),x64.release,ia32.optdebug,x64.optdebug,arm
.optdebug,a64.release |
376 FASTCOMPILEMODES = $(FASTTESTMODES),a64.optdebug | 377 FASTCOMPILEMODES = $(FASTTESTMODES),a64.optdebug |
377 | 378 |
378 COMMA = , | 379 COMMA = , |
379 EMPTY = | 380 EMPTY = |
380 SPACE = $(EMPTY) $(EMPTY) | 381 SPACE = $(EMPTY) $(EMPTY) |
381 quickcheck: $(subst $(COMMA),$(SPACE),$(FASTCOMPILEMODES)) | 382 quickcheck: $(subst $(COMMA),$(SPACE),$(FASTCOMPILEMODES)) |
382 tools/run-tests.py $(TESTJOBS) --outdir=$(OUTDIR) \ | 383 tools/run-tests.py $(TESTJOBS) --outdir=$(OUTDIR) \ |
| 384 --arch-and-mode=$(SUPERFASTTESTMODES) $(TESTFLAGS) --quickcheck \ |
| 385 --download-data mozilla webkit |
| 386 tools/run-tests.py $(TESTJOBS) --outdir=$(OUTDIR) \ |
383 --arch-and-mode=$(FASTTESTMODES) $(TESTFLAGS) --quickcheck | 387 --arch-and-mode=$(FASTTESTMODES) $(TESTFLAGS) --quickcheck |
384 qc: quickcheck | 388 qc: quickcheck |
385 | 389 |
386 # Clean targets. You can clean each architecture individually, or everything. | 390 # Clean targets. You can clean each architecture individually, or everything. |
387 $(addsuffix .clean, $(ARCHES) $(ANDROID_ARCHES) $(NACL_ARCHES)): | 391 $(addsuffix .clean, $(ARCHES) $(ANDROID_ARCHES) $(NACL_ARCHES)): |
388 rm -f $(OUTDIR)/Makefile.$(basename $@)* | 392 rm -f $(OUTDIR)/Makefile.$(basename $@)* |
389 rm -rf $(OUTDIR)/$(basename $@).release | 393 rm -rf $(OUTDIR)/$(basename $@).release |
390 rm -rf $(OUTDIR)/$(basename $@).debug | 394 rm -rf $(OUTDIR)/$(basename $@).debug |
391 rm -rf $(OUTDIR)/$(basename $@).optdebug | 395 rm -rf $(OUTDIR)/$(basename $@).optdebug |
392 find $(OUTDIR) -regex '.*\(host\|target\)\.$(basename $@).*\.mk' -delete | 396 find $(OUTDIR) -regex '.*\(host\|target\)\.$(basename $@).*\.mk' -delete |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
455 @$(OUTDIR)/ia32.release/d8 --dump-heap-constants >> $(DUMP_FILE) | 459 @$(OUTDIR)/ia32.release/d8 --dump-heap-constants >> $(DUMP_FILE) |
456 | 460 |
457 # Dependencies. | 461 # Dependencies. |
458 # Remember to keep these in sync with the DEPS file. | 462 # Remember to keep these in sync with the DEPS file. |
459 dependencies: | 463 dependencies: |
460 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \ | 464 svn checkout --force http://gyp.googlecode.com/svn/trunk build/gyp \ |
461 --revision 1831 | 465 --revision 1831 |
462 svn checkout --force \ | 466 svn checkout --force \ |
463 https://src.chromium.org/chrome/trunk/deps/third_party/icu46 \ | 467 https://src.chromium.org/chrome/trunk/deps/third_party/icu46 \ |
464 third_party/icu --revision 239289 | 468 third_party/icu --revision 239289 |
OLD | NEW |