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

Side by Side Diff: build/features.gypi

Issue 1427343003: make v8_use_snapshot configurable in gn (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: document v8_use_snapshot Created 5 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
« no previous file with comments | « BUILD.gn ('k') | no next file » | 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_enable_disassembler%': 0, 32 'v8_enable_disassembler%': 0,
33 33
34 'v8_enable_gdbjit%': 0, 34 'v8_enable_gdbjit%': 0,
35 35
36 'v8_object_print%': 0, 36 'v8_object_print%': 0,
37 37
38 'v8_enable_verify_heap%': 0, 38 'v8_enable_verify_heap%': 0,
39 39
40 'v8_trace_maps%': 0, 40 'v8_trace_maps%': 0,
41 41
42 # Enable the snapshot feature, for fast context creation.
43 # http://v8project.blogspot.com/2015/09/custom-startup-snapshots.html
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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 }, 136 },
135 'conditions': [ 137 'conditions': [
136 ['v8_enable_handle_zapping==1', { 138 ['v8_enable_handle_zapping==1', {
137 'defines': ['ENABLE_HANDLE_ZAPPING',], 139 'defines': ['ENABLE_HANDLE_ZAPPING',],
138 }], 140 }],
139 ], # conditions 141 ], # conditions
140 }, # Release 142 }, # Release
141 }, # configurations 143 }, # configurations
142 }, # target_defaults 144 }, # target_defaults
143 } 145 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698