| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | 58 |
| 59 # Enable compiler warnings when using V8_DEPRECATED apis. | 59 # Enable compiler warnings when using V8_DEPRECATED apis. |
| 60 'v8_deprecation_warnings%': 0, | 60 'v8_deprecation_warnings%': 0, |
| 61 | 61 |
| 62 # Use the v8 provided v8::Platform implementation. | 62 # Use the v8 provided v8::Platform implementation. |
| 63 'v8_use_default_platform%': 1, | 63 'v8_use_default_platform%': 1, |
| 64 |
| 65 # Use the generated lexer. |
| 66 'v8_use_generated_lexer%': 0, |
| 64 }, | 67 }, |
| 65 'target_defaults': { | 68 'target_defaults': { |
| 66 'conditions': [ | 69 'conditions': [ |
| 67 ['v8_enable_debugger_support==1', { | 70 ['v8_enable_debugger_support==1', { |
| 68 'defines': ['ENABLE_DEBUGGER_SUPPORT',], | 71 'defines': ['ENABLE_DEBUGGER_SUPPORT',], |
| 69 }], | 72 }], |
| 70 ['v8_enable_disassembler==1', { | 73 ['v8_enable_disassembler==1', { |
| 71 'defines': ['ENABLE_DISASSEMBLER',], | 74 'defines': ['ENABLE_DISASSEMBLER',], |
| 72 }], | 75 }], |
| 73 ['v8_enable_gdbjit==1', { | 76 ['v8_enable_gdbjit==1', { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 84 }], | 87 }], |
| 85 ['v8_deprecation_warnings==1', { | 88 ['v8_deprecation_warnings==1', { |
| 86 'defines': ['V8_DEPRECATION_WARNINGS',], | 89 'defines': ['V8_DEPRECATION_WARNINGS',], |
| 87 }], | 90 }], |
| 88 ['v8_enable_i18n_support==1', { | 91 ['v8_enable_i18n_support==1', { |
| 89 'defines': ['V8_I18N_SUPPORT',], | 92 'defines': ['V8_I18N_SUPPORT',], |
| 90 }], | 93 }], |
| 91 ['v8_use_default_platform==1', { | 94 ['v8_use_default_platform==1', { |
| 92 'defines': ['V8_USE_DEFAULT_PLATFORM',], | 95 'defines': ['V8_USE_DEFAULT_PLATFORM',], |
| 93 }], | 96 }], |
| 97 ['v8_use_generated_lexer==1', { |
| 98 'defines': ['V8_USE_GENERATED_LEXER',], |
| 99 }], |
| 94 ['v8_compress_startup_data=="bz2"', { | 100 ['v8_compress_startup_data=="bz2"', { |
| 95 'defines': [ | 101 'defines': [ |
| 96 'COMPRESS_STARTUP_DATA_BZ2', | 102 'COMPRESS_STARTUP_DATA_BZ2', |
| 97 ], | 103 ], |
| 98 }], | 104 }], |
| 99 ], # conditions | 105 ], # conditions |
| 100 'configurations': { | 106 'configurations': { |
| 101 'Debug': { | 107 'Debug': { |
| 102 'variables': { | 108 'variables': { |
| 103 'v8_enable_extra_checks%': 1, | 109 'v8_enable_extra_checks%': 1, |
| (...skipping 18 matching lines...) Expand all Loading... |
| 122 'defines': ['ENABLE_EXTRA_CHECKS',], | 128 'defines': ['ENABLE_EXTRA_CHECKS',], |
| 123 }], | 129 }], |
| 124 ['v8_enable_handle_zapping==1', { | 130 ['v8_enable_handle_zapping==1', { |
| 125 'defines': ['ENABLE_HANDLE_ZAPPING',], | 131 'defines': ['ENABLE_HANDLE_ZAPPING',], |
| 126 }], | 132 }], |
| 127 ], # conditions | 133 ], # conditions |
| 128 }, # Release | 134 }, # Release |
| 129 }, # configurations | 135 }, # configurations |
| 130 }, # target_defaults | 136 }, # target_defaults |
| 131 } | 137 } |
| OLD | NEW |