| 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 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
| 9 | 9 |
| 10 # Because standalone V8 builds are not supported, assume this is part of a | 10 # Because standalone V8 builds are not supported, assume this is part of a |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 "src/messages.h", | 314 "src/messages.h", |
| 315 "src/proxy.js", | 315 "src/proxy.js", |
| 316 "src/generator.js", | 316 "src/generator.js", |
| 317 "src/harmony-atomics.js", | 317 "src/harmony-atomics.js", |
| 318 "src/harmony-array-includes.js", | 318 "src/harmony-array-includes.js", |
| 319 "src/harmony-concat-spreadable.js", | 319 "src/harmony-concat-spreadable.js", |
| 320 "src/harmony-tostring.js", | 320 "src/harmony-tostring.js", |
| 321 "src/harmony-regexp.js", | 321 "src/harmony-regexp.js", |
| 322 "src/harmony-reflect.js", | 322 "src/harmony-reflect.js", |
| 323 "src/harmony-spread.js", | 323 "src/harmony-spread.js", |
| 324 "src/harmony-object.js", | |
| 325 "src/harmony-object-observe.js", | 324 "src/harmony-object-observe.js", |
| 326 "src/harmony-sharedarraybuffer.js", | 325 "src/harmony-sharedarraybuffer.js", |
| 327 "src/harmony-simd.js" | 326 "src/harmony-simd.js" |
| 328 ] | 327 ] |
| 329 | 328 |
| 330 outputs = [ | 329 outputs = [ |
| 331 "$target_gen_dir/experimental-libraries.cc", | 330 "$target_gen_dir/experimental-libraries.cc", |
| 332 ] | 331 ] |
| 333 | 332 |
| 334 args = [ | 333 args = [ |
| (...skipping 1520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1855 if (!is_component_build) { | 1854 if (!is_component_build) { |
| 1856 sources += [ | 1855 sources += [ |
| 1857 "$target_gen_dir/d8-js.cc", | 1856 "$target_gen_dir/d8-js.cc", |
| 1858 ] | 1857 ] |
| 1859 } | 1858 } |
| 1860 if (v8_enable_i18n_support) { | 1859 if (v8_enable_i18n_support) { |
| 1861 deps += [ "//third_party/icu" ] | 1860 deps += [ "//third_party/icu" ] |
| 1862 } | 1861 } |
| 1863 } | 1862 } |
| 1864 } | 1863 } |
| OLD | NEW |