| 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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 "src/macros.py", | 266 "src/macros.py", |
| 267 "src/messages.h", | 267 "src/messages.h", |
| 268 "src/proxy.js", | 268 "src/proxy.js", |
| 269 "src/generator.js", | 269 "src/generator.js", |
| 270 "src/harmony-array.js", | 270 "src/harmony-array.js", |
| 271 "src/harmony-array-includes.js", | 271 "src/harmony-array-includes.js", |
| 272 "src/harmony-typedarray.js", | 272 "src/harmony-typedarray.js", |
| 273 "src/harmony-tostring.js", | 273 "src/harmony-tostring.js", |
| 274 "src/harmony-regexp.js", | 274 "src/harmony-regexp.js", |
| 275 "src/harmony-reflect.js", | 275 "src/harmony-reflect.js", |
| 276 "src/harmony-spread.js" | 276 "src/harmony-spread.js", |
| 277 "src/harmony-object.js" |
| 277 ] | 278 ] |
| 278 | 279 |
| 279 outputs = [ | 280 outputs = [ |
| 280 "$target_gen_dir/experimental-libraries.cc", | 281 "$target_gen_dir/experimental-libraries.cc", |
| 281 ] | 282 ] |
| 282 | 283 |
| 283 args = [ | 284 args = [ |
| 284 rebase_path("$target_gen_dir/experimental-libraries.cc", | 285 rebase_path("$target_gen_dir/experimental-libraries.cc", |
| 285 root_build_dir), | 286 root_build_dir), |
| 286 "EXPERIMENTAL", | 287 "EXPERIMENTAL", |
| (...skipping 1334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1621 sources += [ | 1622 sources += [ |
| 1622 "src/d8-debug.cc", | 1623 "src/d8-debug.cc", |
| 1623 "$target_gen_dir/d8-js.cc", | 1624 "$target_gen_dir/d8-js.cc", |
| 1624 ] | 1625 ] |
| 1625 } | 1626 } |
| 1626 if (v8_enable_i18n_support) { | 1627 if (v8_enable_i18n_support) { |
| 1627 deps += [ "//third_party/icu" ] | 1628 deps += [ "//third_party/icu" ] |
| 1628 } | 1629 } |
| 1629 } | 1630 } |
| 1630 } | 1631 } |
| OLD | NEW |