| 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', { | 117 ['v8_fast_accessors!=0', { |
| 118 'defines': ['V8_JS_ACCESSORS'], | 118 'defines': ['V8_FAST_ACCESSORS'], |
| 119 }], | 119 }], |
| 120 ], # conditions | 120 ], # conditions |
| 121 'configurations': { | 121 'configurations': { |
| 122 'DebugBaseCommon': { | 122 'DebugBaseCommon': { |
| 123 'abstract': 1, | 123 'abstract': 1, |
| 124 'variables': { | 124 'variables': { |
| 125 'v8_enable_handle_zapping%': 1, | 125 'v8_enable_handle_zapping%': 1, |
| 126 }, | 126 }, |
| 127 'conditions': [ | 127 'conditions': [ |
| 128 ['v8_enable_handle_zapping==1', { | 128 ['v8_enable_handle_zapping==1', { |
| 129 'defines': ['ENABLE_HANDLE_ZAPPING',], | 129 'defines': ['ENABLE_HANDLE_ZAPPING',], |
| 130 }], | 130 }], |
| 131 ], | 131 ], |
| 132 }, # Debug | 132 }, # Debug |
| 133 'Release': { | 133 'Release': { |
| 134 'variables': { | 134 'variables': { |
| 135 'v8_enable_handle_zapping%': 1, | 135 'v8_enable_handle_zapping%': 1, |
| 136 }, | 136 }, |
| 137 'conditions': [ | 137 'conditions': [ |
| 138 ['v8_enable_handle_zapping==1', { | 138 ['v8_enable_handle_zapping==1', { |
| 139 'defines': ['ENABLE_HANDLE_ZAPPING',], | 139 'defines': ['ENABLE_HANDLE_ZAPPING',], |
| 140 }], | 140 }], |
| 141 ], # conditions | 141 ], # conditions |
| 142 }, # Release | 142 }, # Release |
| 143 }, # configurations | 143 }, # configurations |
| 144 }, # target_defaults | 144 }, # target_defaults |
| 145 } | 145 } |
| OLD | NEW |