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

Side by Side Diff: build/features.gypi

Issue 145773008: A64: Synchronize with r17104. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « OWNERS ('k') | include/v8.h » ('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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 # tools/gen-postmortem-metadata.py for details. 48 # tools/gen-postmortem-metadata.py for details.
49 'v8_postmortem_support%': 'false', 49 'v8_postmortem_support%': 'false',
50 50
51 # Interpreted regexp engine exists as platform-independent alternative 51 # Interpreted regexp engine exists as platform-independent alternative
52 # based where the regular expression is compiled to a bytecode. 52 # based where the regular expression is compiled to a bytecode.
53 'v8_interpreted_regexp%': 0, 53 'v8_interpreted_regexp%': 0,
54 54
55 # Enable ECMAScript Internationalization API. Enabling this feature will 55 # Enable ECMAScript Internationalization API. Enabling this feature will
56 # add a dependency on the ICU library. 56 # add a dependency on the ICU library.
57 'v8_enable_i18n_support%': 1, 57 'v8_enable_i18n_support%': 1,
58
59 # Enable compiler warnings when using V8_DEPRECATED apis.
60 'v8_deprecation_warnings%': 0,
58 }, 61 },
59 'target_defaults': { 62 'target_defaults': {
60 'conditions': [ 63 'conditions': [
61 ['v8_enable_debugger_support==1', { 64 ['v8_enable_debugger_support==1', {
62 'defines': ['ENABLE_DEBUGGER_SUPPORT',], 65 'defines': ['ENABLE_DEBUGGER_SUPPORT',],
63 }], 66 }],
64 ['v8_enable_disassembler==1', { 67 ['v8_enable_disassembler==1', {
65 'defines': ['ENABLE_DISASSEMBLER',], 68 'defines': ['ENABLE_DISASSEMBLER',],
66 }], 69 }],
67 ['v8_enable_gdbjit==1', { 70 ['v8_enable_gdbjit==1', {
68 'defines': ['ENABLE_GDB_JIT_INTERFACE',], 71 'defines': ['ENABLE_GDB_JIT_INTERFACE',],
69 }], 72 }],
70 ['v8_object_print==1', { 73 ['v8_object_print==1', {
71 'defines': ['OBJECT_PRINT',], 74 'defines': ['OBJECT_PRINT',],
72 }], 75 }],
73 ['v8_enable_verify_heap==1', { 76 ['v8_enable_verify_heap==1', {
74 'defines': ['VERIFY_HEAP',], 77 'defines': ['VERIFY_HEAP',],
75 }], 78 }],
76 ['v8_interpreted_regexp==1', { 79 ['v8_interpreted_regexp==1', {
77 'defines': ['V8_INTERPRETED_REGEXP',], 80 'defines': ['V8_INTERPRETED_REGEXP',],
78 }], 81 }],
82 ['v8_deprecation_warnings==1', {
83 'defines': ['V8_DEPRECATION_WARNINGS',],
84 }],
79 ['v8_enable_i18n_support==1', { 85 ['v8_enable_i18n_support==1', {
80 'defines': ['V8_I18N_SUPPORT',], 86 'defines': ['V8_I18N_SUPPORT',],
81 }], 87 }],
82 ['v8_compress_startup_data=="bz2"', { 88 ['v8_compress_startup_data=="bz2"', {
83 'defines': [ 89 'defines': [
84 'COMPRESS_STARTUP_DATA_BZ2', 90 'COMPRESS_STARTUP_DATA_BZ2',
85 ], 91 ],
86 }], 92 }],
87 ], # conditions 93 ], # conditions
88 'configurations': { 94 'configurations': {
89 'Debug': { 95 'Debug': {
90 'variables': { 96 'variables': {
91 'v8_enable_extra_checks%': 1, 97 'v8_enable_extra_checks%': 1,
98 'v8_enable_handle_zapping%': 1,
92 }, 99 },
93 'conditions': [ 100 'conditions': [
94 ['v8_enable_extra_checks==1', { 101 ['v8_enable_extra_checks==1', {
95 'defines': ['ENABLE_EXTRA_CHECKS',], 102 'defines': ['ENABLE_EXTRA_CHECKS',],
96 }], 103 }],
104 ['v8_enable_handle_zapping==1', {
105 'defines': ['ENABLE_HANDLE_ZAPPING',],
106 }],
97 ], 107 ],
98 }, # Debug 108 }, # Debug
99 'Release': { 109 'Release': {
100 'variables': { 110 'variables': {
101 'v8_enable_extra_checks%': 0, 111 'v8_enable_extra_checks%': 0,
112 'v8_enable_handle_zapping%': 1,
102 }, 113 },
103 'conditions': [ 114 'conditions': [
104 ['v8_enable_extra_checks==1', { 115 ['v8_enable_extra_checks==1', {
105 'defines': ['ENABLE_EXTRA_CHECKS',], 116 'defines': ['ENABLE_EXTRA_CHECKS',],
106 }], 117 }],
118 ['v8_enable_handle_zapping==1', {
119 'defines': ['ENABLE_HANDLE_ZAPPING',],
120 }],
107 ], # conditions 121 ], # conditions
108 }, # Release 122 }, # Release
109 }, # configurations 123 }, # configurations
110 }, # target_defaults 124 }, # target_defaults
111 } 125 }
OLDNEW
« no previous file with comments | « OWNERS ('k') | include/v8.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698