| 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 # Because standalone V8 builds are not supported, assume this is part of a | 5 # Because standalone V8 builds are not supported, assume this is part of a |
| 6 # Chromium build. | 6 # Chromium build. |
| 7 import("//build/module_args/v8.gni") | 7 import("//build/module_args/v8.gni") |
| 8 | 8 |
| 9 # TODO(jochen): These will need to be user-settable to support standalone V8 | 9 # TODO(jochen): These will need to be user-settable to support standalone V8 |
| 10 # builds. | 10 # builds. |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 source_prereqs = [ "tools/jsmin.py" ] | 227 source_prereqs = [ "tools/jsmin.py" ] |
| 228 | 228 |
| 229 sources = [ | 229 sources = [ |
| 230 "src/macros.py", | 230 "src/macros.py", |
| 231 "src/proxy.js", | 231 "src/proxy.js", |
| 232 "src/generator.js", | 232 "src/generator.js", |
| 233 "src/harmony-string.js", | 233 "src/harmony-string.js", |
| 234 "src/harmony-array.js", | 234 "src/harmony-array.js", |
| 235 "src/harmony-array-includes.js", | 235 "src/harmony-array-includes.js", |
| 236 "src/harmony-typedarray.js", | 236 "src/harmony-typedarray.js", |
| 237 "src/harmony-classes.js", | |
| 238 "src/harmony-tostring.js", | 237 "src/harmony-tostring.js", |
| 239 "src/harmony-templates.js", | 238 "src/harmony-templates.js", |
| 240 "src/harmony-regexp.js", | 239 "src/harmony-regexp.js", |
| 241 ] | 240 ] |
| 242 | 241 |
| 243 outputs = [ | 242 outputs = [ |
| 244 "$target_gen_dir/experimental-libraries.cc", | 243 "$target_gen_dir/experimental-libraries.cc", |
| 245 ] | 244 ] |
| 246 | 245 |
| 247 args = [ | 246 args = [ |
| (...skipping 1308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1556 sources += [ | 1555 sources += [ |
| 1557 "src/d8-debug.cc", | 1556 "src/d8-debug.cc", |
| 1558 "$target_gen_dir/d8-js.cc", | 1557 "$target_gen_dir/d8-js.cc", |
| 1559 ] | 1558 ] |
| 1560 } | 1559 } |
| 1561 if (v8_enable_i18n_support) { | 1560 if (v8_enable_i18n_support) { |
| 1562 deps += [ "//third_party/icu" ] | 1561 deps += [ "//third_party/icu" ] |
| 1563 } | 1562 } |
| 1564 } | 1563 } |
| 1565 } | 1564 } |
| OLD | NEW |