OLD | NEW |
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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 }], | 107 }], |
108 ['v8_use_snapshot=="true" and v8_use_external_startup_data==1', { | 108 ['v8_use_snapshot=="true" and v8_use_external_startup_data==1', { |
109 'defines': ['V8_USE_EXTERNAL_STARTUP_DATA',], | 109 'defines': ['V8_USE_EXTERNAL_STARTUP_DATA',], |
110 }], | 110 }], |
111 ['dcheck_always_on!=0', { | 111 ['dcheck_always_on!=0', { |
112 'defines': ['DEBUG',], | 112 'defines': ['DEBUG',], |
113 }], | 113 }], |
114 ['v8_wasm!=0', { | 114 ['v8_wasm!=0', { |
115 'defines': ['V8_WASM',], | 115 'defines': ['V8_WASM',], |
116 }], | 116 }], |
117 ['v8_js_accessors!=0', { | |
118 'defines': ['V8_JS_ACCESSORS'], | |
119 }], | |
120 ], # conditions | 117 ], # conditions |
121 'configurations': { | 118 'configurations': { |
122 'DebugBaseCommon': { | 119 'DebugBaseCommon': { |
123 'abstract': 1, | 120 'abstract': 1, |
124 'variables': { | 121 'variables': { |
125 'v8_enable_handle_zapping%': 1, | 122 'v8_enable_handle_zapping%': 1, |
126 }, | 123 }, |
127 'conditions': [ | 124 'conditions': [ |
128 ['v8_enable_handle_zapping==1', { | 125 ['v8_enable_handle_zapping==1', { |
129 'defines': ['ENABLE_HANDLE_ZAPPING',], | 126 'defines': ['ENABLE_HANDLE_ZAPPING',], |
130 }], | 127 }], |
131 ], | 128 ], |
132 }, # Debug | 129 }, # Debug |
133 'Release': { | 130 'Release': { |
134 'variables': { | 131 'variables': { |
135 'v8_enable_handle_zapping%': 1, | 132 'v8_enable_handle_zapping%': 1, |
136 }, | 133 }, |
137 'conditions': [ | 134 'conditions': [ |
138 ['v8_enable_handle_zapping==1', { | 135 ['v8_enable_handle_zapping==1', { |
139 'defines': ['ENABLE_HANDLE_ZAPPING',], | 136 'defines': ['ENABLE_HANDLE_ZAPPING',], |
140 }], | 137 }], |
141 ], # conditions | 138 ], # conditions |
142 }, # Release | 139 }, # Release |
143 }, # configurations | 140 }, # configurations |
144 }, # target_defaults | 141 }, # target_defaults |
145 } | 142 } |
OLD | NEW |