| 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 }], |
| 104 ], | 107 ], |
| 105 }, | 108 }, |
| 106 { | 109 { |
| 107 'target_name': 'd8_js2c', | 110 'target_name': 'd8_js2c', |
| 108 'type': 'none', | 111 'type': 'none', |
| 109 'variables': { | 112 'variables': { |
| 110 'js_files': [ | 113 'js_files': [ |
| 111 'd8.js', | 114 'd8.js', |
| 112 'js/macros.py', | 115 'js/macros.py', |
| 113 ], | 116 ], |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 '../build/isolate.gypi', | 156 '../build/isolate.gypi', |
| 154 ], | 157 ], |
| 155 'sources': [ | 158 'sources': [ |
| 156 'd8.isolate', | 159 'd8.isolate', |
| 157 ], | 160 ], |
| 158 }, | 161 }, |
| 159 ], | 162 ], |
| 160 }], | 163 }], |
| 161 ], | 164 ], |
| 162 } | 165 } |
| OLD | NEW |