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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 'dependencies': [ | 91 'dependencies': [ |
92 '<(icu_gyp_path):icui18n', | 92 '<(icu_gyp_path):icui18n', |
93 '<(icu_gyp_path):icuuc', | 93 '<(icu_gyp_path):icuuc', |
94 ], | 94 ], |
95 }], | 95 }], |
96 ['OS=="win" and v8_enable_i18n_support==1', { | 96 ['OS=="win" and v8_enable_i18n_support==1', { |
97 'dependencies': [ | 97 'dependencies': [ |
98 '<(icu_gyp_path):icudata', | 98 '<(icu_gyp_path):icudata', |
99 ], | 99 ], |
100 }], | 100 }], |
| 101 ['v8_wasm!=0', { |
| 102 'include_dirs': ['../third_party/wasm'], |
| 103 }], |
101 ], | 104 ], |
102 }, | 105 }, |
103 { | 106 { |
104 'target_name': 'd8_js2c', | 107 'target_name': 'd8_js2c', |
105 'type': 'none', | 108 'type': 'none', |
106 'variables': { | 109 'variables': { |
107 'js_files': [ | 110 'js_files': [ |
108 'd8.js', | 111 'd8.js', |
109 'macros.py', | 112 'macros.py', |
110 ], | 113 ], |
(...skipping 20 matching lines...) Expand all Loading... |
131 '../tools/js2c.py', | 134 '../tools/js2c.py', |
132 '<@(_outputs)', | 135 '<@(_outputs)', |
133 'D8', | 136 'D8', |
134 '<@(js_files)' | 137 '<@(js_files)' |
135 ], | 138 ], |
136 }, | 139 }, |
137 ], | 140 ], |
138 } | 141 } |
139 ], | 142 ], |
140 } | 143 } |
OLD | NEW |