| 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 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
| 6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
| 7 import("//build/config/mips.gni") | 7 import("//build/config/mips.gni") |
| 8 | 8 |
| 9 # Because standalone V8 builds are not supported, assume this is part of a | 9 # Because standalone V8 builds are not supported, assume this is part of a |
| 10 # Chromium build. | 10 # Chromium build. |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 | 263 |
| 264 sources = [ | 264 sources = [ |
| 265 "src/macros.py", | 265 "src/macros.py", |
| 266 "src/proxy.js", | 266 "src/proxy.js", |
| 267 "src/generator.js", | 267 "src/generator.js", |
| 268 "src/harmony-array.js", | 268 "src/harmony-array.js", |
| 269 "src/harmony-array-includes.js", | 269 "src/harmony-array-includes.js", |
| 270 "src/harmony-typedarray.js", | 270 "src/harmony-typedarray.js", |
| 271 "src/harmony-tostring.js", | 271 "src/harmony-tostring.js", |
| 272 "src/harmony-regexp.js", | 272 "src/harmony-regexp.js", |
| 273 "src/harmony-reflect.js" | 273 "src/harmony-reflect.js", |
| 274 "src/harmony-spread.js" |
| 274 ] | 275 ] |
| 275 | 276 |
| 276 outputs = [ | 277 outputs = [ |
| 277 "$target_gen_dir/experimental-libraries.cc", | 278 "$target_gen_dir/experimental-libraries.cc", |
| 278 ] | 279 ] |
| 279 | 280 |
| 280 args = [ | 281 args = [ |
| 281 rebase_path("$target_gen_dir/experimental-libraries.cc", | 282 rebase_path("$target_gen_dir/experimental-libraries.cc", |
| 282 root_build_dir), | 283 root_build_dir), |
| 283 "EXPERIMENTAL", | 284 "EXPERIMENTAL", |
| (...skipping 1311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1595 sources += [ | 1596 sources += [ |
| 1596 "src/d8-debug.cc", | 1597 "src/d8-debug.cc", |
| 1597 "$target_gen_dir/d8-js.cc", | 1598 "$target_gen_dir/d8-js.cc", |
| 1598 ] | 1599 ] |
| 1599 } | 1600 } |
| 1600 if (v8_enable_i18n_support) { | 1601 if (v8_enable_i18n_support) { |
| 1601 deps += [ "//third_party/icu" ] | 1602 deps += [ "//third_party/icu" ] |
| 1602 } | 1603 } |
| 1603 } | 1604 } |
| 1604 } | 1605 } |
| OLD | NEW |