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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 # describes various parameters of the VM for use by debuggers. See | 47 # describes various parameters of the VM for use by debuggers. See |
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%': 0, | 57 'v8_enable_i18n_support%': 1, |
58 }, | 58 }, |
59 'target_defaults': { | 59 'target_defaults': { |
60 'conditions': [ | 60 'conditions': [ |
61 ['v8_enable_debugger_support==1', { | 61 ['v8_enable_debugger_support==1', { |
62 'defines': ['ENABLE_DEBUGGER_SUPPORT',], | 62 'defines': ['ENABLE_DEBUGGER_SUPPORT',], |
63 }], | 63 }], |
64 ['v8_enable_disassembler==1', { | 64 ['v8_enable_disassembler==1', { |
65 'defines': ['ENABLE_DISASSEMBLER',], | 65 'defines': ['ENABLE_DISASSEMBLER',], |
66 }], | 66 }], |
67 ['v8_enable_gdbjit==1', { | 67 ['v8_enable_gdbjit==1', { |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 }, | 102 }, |
103 'conditions': [ | 103 'conditions': [ |
104 ['v8_enable_extra_checks==1', { | 104 ['v8_enable_extra_checks==1', { |
105 'defines': ['ENABLE_EXTRA_CHECKS',], | 105 'defines': ['ENABLE_EXTRA_CHECKS',], |
106 }], | 106 }], |
107 ], # conditions | 107 ], # conditions |
108 }, # Release | 108 }, # Release |
109 }, # configurations | 109 }, # configurations |
110 }, # target_defaults | 110 }, # target_defaults |
111 } | 111 } |
OLD | NEW |