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

Side by Side Diff: Makefile

Issue 2650273006: Make enabling of CSA verifier a build-time flag (Closed)
Patch Set: Fix tests Created 3 years, 11 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 | « BUILD.gn ('k') | gypfiles/features.gypi » ('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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 GYPFLAGS += -Dcomponent=$(component) 44 GYPFLAGS += -Dcomponent=$(component)
45 endif 45 endif
46 # disassembler=on 46 # disassembler=on
47 ifeq ($(disassembler), on) 47 ifeq ($(disassembler), on)
48 GYPFLAGS += -Dv8_enable_disassembler=1 48 GYPFLAGS += -Dv8_enable_disassembler=1
49 endif 49 endif
50 # objectprint=on 50 # objectprint=on
51 ifeq ($(objectprint), on) 51 ifeq ($(objectprint), on)
52 GYPFLAGS += -Dv8_object_print=1 52 GYPFLAGS += -Dv8_object_print=1
53 endif 53 endif
54 # verifycsa=on
55 ifeq ($(verifycsa), on)
56 GYPFLAGS += -Dv8_enable_verify_csa=1
57 endif
54 # verifyheap=on 58 # verifyheap=on
55 ifeq ($(verifyheap), on) 59 ifeq ($(verifyheap), on)
56 GYPFLAGS += -Dv8_enable_verify_heap=1 60 GYPFLAGS += -Dv8_enable_verify_heap=1
57 endif 61 endif
58 # tracemaps=on 62 # tracemaps=on
59 ifeq ($(tracemaps), on) 63 ifeq ($(tracemaps), on)
60 GYPFLAGS += -Dv8_trace_maps=1 64 GYPFLAGS += -Dv8_trace_maps=1
61 endif 65 endif
62 # backtrace=off 66 # backtrace=off
63 ifeq ($(backtrace), off) 67 ifeq ($(backtrace), off)
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 tags: gtags.files $(wildcard $(shell cat gtags.files 2> /dev/null)) 490 tags: gtags.files $(wildcard $(shell cat gtags.files 2> /dev/null))
487 @(ctags --version | grep 'Exuberant Ctags' >/dev/null) || \ 491 @(ctags --version | grep 'Exuberant Ctags' >/dev/null) || \
488 (echo "Please install Exuberant Ctags (check 'ctags --version')" >&2; false) 492 (echo "Please install Exuberant Ctags (check 'ctags --version')" >&2; false)
489 ctags --fields=+l -L $< 493 ctags --fields=+l -L $<
490 494
491 tags.clean: 495 tags.clean:
492 rm -r tags 496 rm -r tags
493 497
494 dependencies builddeps: 498 dependencies builddeps:
495 $(error Use 'gclient sync' instead) 499 $(error Use 'gclient sync' instead)
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | gypfiles/features.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698