Revision f230a1cf deps/v8/build/features.gypi

View differences:

deps/v8/build/features.gypi
54 54

  
55 55
    # Enable ECMAScript Internationalization API. Enabling this feature will
56 56
    # add a dependency on the ICU library.
57
    'v8_enable_i18n_support%': 0,
57
    'v8_enable_i18n_support%': 1,
58

  
59
    # Enable compiler warnings when using V8_DEPRECATED apis.
60
    'v8_deprecation_warnings%': 0,
58 61
  },
59 62
  'target_defaults': {
60 63
    'conditions': [
......
76 79
      ['v8_interpreted_regexp==1', {
77 80
        'defines': ['V8_INTERPRETED_REGEXP',],
78 81
      }],
82
      ['v8_deprecation_warnings==1', {
83
        'defines': ['V8_DEPRECATION_WARNINGS',],
84
      }],
79 85
      ['v8_enable_i18n_support==1', {
80 86
        'defines': ['V8_I18N_SUPPORT',],
81 87
      }],
......
89 95
      'Debug': {
90 96
        'variables': {
91 97
          'v8_enable_extra_checks%': 1,
98
          'v8_enable_handle_zapping%': 1,
92 99
        },
93 100
        'conditions': [
94 101
          ['v8_enable_extra_checks==1', {
95 102
            'defines': ['ENABLE_EXTRA_CHECKS',],
96 103
          }],
104
          ['v8_enable_handle_zapping==1', {
105
            'defines': ['ENABLE_HANDLE_ZAPPING',],
106
          }],
97 107
        ],
98 108
      },  # Debug
99 109
      'Release': {
100 110
        'variables': {
101 111
          'v8_enable_extra_checks%': 0,
112
          'v8_enable_handle_zapping%': 0,
102 113
        },
103 114
        'conditions': [
104 115
          ['v8_enable_extra_checks==1', {
105 116
            'defines': ['ENABLE_EXTRA_CHECKS',],
106 117
          }],
118
          ['v8_enable_handle_zapping==1', {
119
            'defines': ['ENABLE_HANDLE_ZAPPING',],
120
          }],
107 121
        ],  # conditions
108 122
      },  # Release
109 123
    },  # configurations

Also available in: Unified diff