| 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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 "src/messages.h", | 269 "src/messages.h", |
| 270 "src/proxy.js", | 270 "src/proxy.js", |
| 271 "src/generator.js", | 271 "src/generator.js", |
| 272 "src/harmony-array.js", | 272 "src/harmony-array.js", |
| 273 "src/harmony-array-includes.js", | 273 "src/harmony-array-includes.js", |
| 274 "src/harmony-typedarray.js", | 274 "src/harmony-typedarray.js", |
| 275 "src/harmony-tostring.js", | 275 "src/harmony-tostring.js", |
| 276 "src/harmony-regexp.js", | 276 "src/harmony-regexp.js", |
| 277 "src/harmony-reflect.js", | 277 "src/harmony-reflect.js", |
| 278 "src/harmony-spread.js", | 278 "src/harmony-spread.js", |
| 279 "src/harmony-object.js", | 279 "src/harmony-object.js" |
| 280 "src/harmony-sharedarraybuffer.js" | |
| 281 ] | 280 ] |
| 282 | 281 |
| 283 outputs = [ | 282 outputs = [ |
| 284 "$target_gen_dir/experimental-libraries.cc", | 283 "$target_gen_dir/experimental-libraries.cc", |
| 285 ] | 284 ] |
| 286 | 285 |
| 287 args = [ | 286 args = [ |
| 288 rebase_path("$target_gen_dir/experimental-libraries.cc", | 287 rebase_path("$target_gen_dir/experimental-libraries.cc", |
| 289 root_build_dir), | 288 root_build_dir), |
| 290 "EXPERIMENTAL", | 289 "EXPERIMENTAL", |
| (...skipping 1386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1677 sources += [ | 1676 sources += [ |
| 1678 "src/d8-debug.cc", | 1677 "src/d8-debug.cc", |
| 1679 "$target_gen_dir/d8-js.cc", | 1678 "$target_gen_dir/d8-js.cc", |
| 1680 ] | 1679 ] |
| 1681 } | 1680 } |
| 1682 if (v8_enable_i18n_support) { | 1681 if (v8_enable_i18n_support) { |
| 1683 deps += [ "//third_party/icu" ] | 1682 deps += [ "//third_party/icu" ] |
| 1684 } | 1683 } |
| 1685 } | 1684 } |
| 1686 } | 1685 } |
| OLD | NEW |