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

Side by Side Diff: build/features.gypi

Issue 694533003: Add FLAG_trace_maps (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: updates Created 6 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « Makefile ('k') | build/toolchain.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 2013 the V8 project authors. All rights reserved. 1 # Copyright 2013 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 21 matching lines...) Expand all
32 'v8_compress_startup_data%': 'off', 32 'v8_compress_startup_data%': 'off',
33 33
34 'v8_enable_disassembler%': 0, 34 'v8_enable_disassembler%': 0,
35 35
36 'v8_enable_gdbjit%': 0, 36 'v8_enable_gdbjit%': 0,
37 37
38 'v8_object_print%': 0, 38 'v8_object_print%': 0,
39 39
40 'v8_enable_verify_heap%': 0, 40 'v8_enable_verify_heap%': 0,
41 41
42 'v8_trace_maps%': 0,
43
42 'v8_use_snapshot%': 'true', 44 'v8_use_snapshot%': 'true',
43 45
44 'v8_enable_verify_predictable%': 0, 46 'v8_enable_verify_predictable%': 0,
45 47
46 # With post mortem support enabled, metadata is embedded into libv8 that 48 # With post mortem support enabled, metadata is embedded into libv8 that
47 # describes various parameters of the VM for use by debuggers. See 49 # describes various parameters of the VM for use by debuggers. See
48 # tools/gen-postmortem-metadata.py for details. 50 # tools/gen-postmortem-metadata.py for details.
49 'v8_postmortem_support%': 'false', 51 'v8_postmortem_support%': 'false',
50 52
51 # Interpreted regexp engine exists as platform-independent alternative 53 # Interpreted regexp engine exists as platform-independent alternative
(...skipping 18 matching lines...) Expand all
70 }], 72 }],
71 ['v8_enable_gdbjit==1', { 73 ['v8_enable_gdbjit==1', {
72 'defines': ['ENABLE_GDB_JIT_INTERFACE',], 74 'defines': ['ENABLE_GDB_JIT_INTERFACE',],
73 }], 75 }],
74 ['v8_object_print==1', { 76 ['v8_object_print==1', {
75 'defines': ['OBJECT_PRINT',], 77 'defines': ['OBJECT_PRINT',],
76 }], 78 }],
77 ['v8_enable_verify_heap==1', { 79 ['v8_enable_verify_heap==1', {
78 'defines': ['VERIFY_HEAP',], 80 'defines': ['VERIFY_HEAP',],
79 }], 81 }],
82 ['v8_trace_maps==1', {
83 'defines': ['TRACE_MAPS',],
84 }],
80 ['v8_enable_verify_predictable==1', { 85 ['v8_enable_verify_predictable==1', {
81 'defines': ['VERIFY_PREDICTABLE',], 86 'defines': ['VERIFY_PREDICTABLE',],
82 }], 87 }],
83 ['v8_interpreted_regexp==1', { 88 ['v8_interpreted_regexp==1', {
84 'defines': ['V8_INTERPRETED_REGEXP',], 89 'defines': ['V8_INTERPRETED_REGEXP',],
85 }], 90 }],
86 ['v8_deprecation_warnings==1', { 91 ['v8_deprecation_warnings==1', {
87 'defines': ['V8_DEPRECATION_WARNINGS',], 92 'defines': ['V8_DEPRECATION_WARNINGS',],
88 }], 93 }],
89 ['v8_enable_i18n_support==1', { 94 ['v8_enable_i18n_support==1', {
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 'defines': ['ENABLE_EXTRA_CHECKS',], 127 'defines': ['ENABLE_EXTRA_CHECKS',],
123 }], 128 }],
124 ['v8_enable_handle_zapping==1', { 129 ['v8_enable_handle_zapping==1', {
125 'defines': ['ENABLE_HANDLE_ZAPPING',], 130 'defines': ['ENABLE_HANDLE_ZAPPING',],
126 }], 131 }],
127 ], # conditions 132 ], # conditions
128 }, # Release 133 }, # Release
129 }, # configurations 134 }, # configurations
130 }, # target_defaults 135 }, # target_defaults
131 } 136 }
OLDNEW
« no previous file with comments | « Makefile ('k') | build/toolchain.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698