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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 "src/macros.py", | 248 "src/macros.py", |
249 "src/proxy.js", | 249 "src/proxy.js", |
250 "src/generator.js", | 250 "src/generator.js", |
251 "src/harmony-string.js", | 251 "src/harmony-string.js", |
252 "src/harmony-array.js", | 252 "src/harmony-array.js", |
253 "src/harmony-array-includes.js", | 253 "src/harmony-array-includes.js", |
254 "src/harmony-typedarray.js", | 254 "src/harmony-typedarray.js", |
255 "src/harmony-tostring.js", | 255 "src/harmony-tostring.js", |
256 "src/harmony-templates.js", | 256 "src/harmony-templates.js", |
257 "src/harmony-regexp.js", | 257 "src/harmony-regexp.js", |
| 258 "src/harmony-reflect.js" |
258 ] | 259 ] |
259 | 260 |
260 outputs = [ | 261 outputs = [ |
261 "$target_gen_dir/experimental-libraries.cc", | 262 "$target_gen_dir/experimental-libraries.cc", |
262 ] | 263 ] |
263 | 264 |
264 args = [ | 265 args = [ |
265 rebase_path("$target_gen_dir/experimental-libraries.cc", | 266 rebase_path("$target_gen_dir/experimental-libraries.cc", |
266 root_build_dir), | 267 root_build_dir), |
267 "EXPERIMENTAL", | 268 "EXPERIMENTAL", |
(...skipping 1307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1575 sources += [ | 1576 sources += [ |
1576 "src/d8-debug.cc", | 1577 "src/d8-debug.cc", |
1577 "$target_gen_dir/d8-js.cc", | 1578 "$target_gen_dir/d8-js.cc", |
1578 ] | 1579 ] |
1579 } | 1580 } |
1580 if (v8_enable_i18n_support) { | 1581 if (v8_enable_i18n_support) { |
1581 deps += [ "//third_party/icu" ] | 1582 deps += [ "//third_party/icu" ] |
1582 } | 1583 } |
1583 } | 1584 } |
1584 } | 1585 } |
OLD | NEW |