| OLD | NEW |
| 1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 'dependencies': [ | 94 'dependencies': [ |
| 95 '<(icu_gyp_path):icui18n', | 95 '<(icu_gyp_path):icui18n', |
| 96 '<(icu_gyp_path):icuuc', | 96 '<(icu_gyp_path):icuuc', |
| 97 ], | 97 ], |
| 98 }], | 98 }], |
| 99 ['OS=="win" and v8_enable_i18n_support==1', { | 99 ['OS=="win" and v8_enable_i18n_support==1', { |
| 100 'dependencies': [ | 100 'dependencies': [ |
| 101 '<(icu_gyp_path):icudata', | 101 '<(icu_gyp_path):icudata', |
| 102 ], | 102 ], |
| 103 }], | 103 }], |
| 104 ['v8_wasm!=0', { | |
| 105 'include_dirs': ['../third_party/wasm'], | |
| 106 }], | |
| 107 ], | 104 ], |
| 108 }, | 105 }, |
| 109 { | 106 { |
| 110 'target_name': 'd8_js2c', | 107 'target_name': 'd8_js2c', |
| 111 'type': 'none', | 108 'type': 'none', |
| 112 'variables': { | 109 'variables': { |
| 113 'js_files': [ | 110 'js_files': [ |
| 114 'd8.js', | 111 'd8.js', |
| 115 'js/macros.py', | 112 'js/macros.py', |
| 116 ], | 113 ], |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 '../build/isolate.gypi', | 153 '../build/isolate.gypi', |
| 157 ], | 154 ], |
| 158 'sources': [ | 155 'sources': [ |
| 159 'd8.isolate', | 156 'd8.isolate', |
| 160 ], | 157 ], |
| 161 }, | 158 }, |
| 162 ], | 159 ], |
| 163 }], | 160 }], |
| 164 ], | 161 ], |
| 165 } | 162 } |
| OLD | NEW |