OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # TODO(jochen): These will need to be user-settable to support standalone V8 | 5 # TODO(jochen): These will need to be user-settable to support standalone V8 |
6 # builds. | 6 # builds. |
7 v8_deprecation_warnings = false | 7 v8_deprecation_warnings = false |
8 v8_enable_disassembler = false | 8 v8_enable_disassembler = false |
9 v8_enable_gdbjit = false | 9 v8_enable_gdbjit = false |
10 v8_enable_handle_zapping = true | 10 v8_enable_handle_zapping = true |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 "src/weak-collection.js", | 189 "src/weak-collection.js", |
190 "src/collection-iterator.js", | 190 "src/collection-iterator.js", |
191 "src/promise.js", | 191 "src/promise.js", |
192 "src/messages.js", | 192 "src/messages.js", |
193 "src/json.js", | 193 "src/json.js", |
194 "src/array-iterator.js", | 194 "src/array-iterator.js", |
195 "src/string-iterator.js", | 195 "src/string-iterator.js", |
196 "src/debug-debugger.js", | 196 "src/debug-debugger.js", |
197 "src/mirror-debugger.js", | 197 "src/mirror-debugger.js", |
198 "src/liveedit-debugger.js", | 198 "src/liveedit-debugger.js", |
| 199 "src/harmony-string.js", |
199 "src/macros.py", | 200 "src/macros.py", |
200 ] | 201 ] |
201 | 202 |
202 outputs = [ | 203 outputs = [ |
203 "$target_gen_dir/libraries.cc" | 204 "$target_gen_dir/libraries.cc" |
204 ] | 205 ] |
205 | 206 |
206 if (v8_enable_i18n_support) { | 207 if (v8_enable_i18n_support) { |
207 sources += [ "src/i18n.js" ] | 208 sources += [ "src/i18n.js" ] |
208 } | 209 } |
(...skipping 18 matching lines...) Expand all Loading... |
227 script = "tools/js2c.py" | 228 script = "tools/js2c.py" |
228 | 229 |
229 # The script depends on this other script, this rule causes a rebuild if it | 230 # The script depends on this other script, this rule causes a rebuild if it |
230 # changes. | 231 # changes. |
231 source_prereqs = [ "tools/jsmin.py" ] | 232 source_prereqs = [ "tools/jsmin.py" ] |
232 | 233 |
233 sources = [ | 234 sources = [ |
234 "src/macros.py", | 235 "src/macros.py", |
235 "src/proxy.js", | 236 "src/proxy.js", |
236 "src/generator.js", | 237 "src/generator.js", |
237 "src/harmony-string.js", | |
238 "src/harmony-array.js", | 238 "src/harmony-array.js", |
239 "src/harmony-typedarray.js", | 239 "src/harmony-typedarray.js", |
240 "src/harmony-classes.js", | 240 "src/harmony-classes.js", |
241 "src/harmony-tostring.js", | 241 "src/harmony-tostring.js", |
242 "src/harmony-templates.js" | 242 "src/harmony-templates.js" |
243 ] | 243 ] |
244 | 244 |
245 outputs = [ | 245 outputs = [ |
246 "$target_gen_dir/experimental-libraries.cc" | 246 "$target_gen_dir/experimental-libraries.cc" |
247 ] | 247 ] |
(...skipping 1197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1445 deps = [ | 1445 deps = [ |
1446 ":v8_base", | 1446 ":v8_base", |
1447 ":v8_nosnapshot", | 1447 ":v8_nosnapshot", |
1448 ] | 1448 ] |
1449 } | 1449 } |
1450 | 1450 |
1451 direct_dependent_configs = [ ":external_config" ] | 1451 direct_dependent_configs = [ ":external_config" ] |
1452 } | 1452 } |
1453 | 1453 |
1454 } | 1454 } |
OLD | NEW |