| 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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 # changes. | 302 # changes. |
| 303 inputs = [ "tools/jsmin.py" ] | 303 inputs = [ "tools/jsmin.py" ] |
| 304 | 304 |
| 305 sources = [ | 305 sources = [ |
| 306 "src/js/macros.py", | 306 "src/js/macros.py", |
| 307 "src/messages.h", | 307 "src/messages.h", |
| 308 "src/js/proxy.js", | 308 "src/js/proxy.js", |
| 309 "src/js/generator.js", | 309 "src/js/generator.js", |
| 310 "src/js/harmony-atomics.js", | 310 "src/js/harmony-atomics.js", |
| 311 "src/js/harmony-array-includes.js", | 311 "src/js/harmony-array-includes.js", |
| 312 "src/js/harmony-concat-spreadable.js", | |
| 313 "src/js/harmony-tostring.js", | |
| 314 "src/js/harmony-regexp.js", | 312 "src/js/harmony-regexp.js", |
| 315 "src/js/harmony-reflect.js", | 313 "src/js/harmony-reflect.js", |
| 316 "src/js/harmony-object-observe.js", | 314 "src/js/harmony-object-observe.js", |
| 317 "src/js/harmony-sharedarraybuffer.js", | 315 "src/js/harmony-sharedarraybuffer.js", |
| 318 "src/js/harmony-simd.js" | 316 "src/js/harmony-simd.js" |
| 319 ] | 317 ] |
| 320 | 318 |
| 321 outputs = [ | 319 outputs = [ |
| 322 "$target_gen_dir/experimental-libraries.cc", | 320 "$target_gen_dir/experimental-libraries.cc", |
| 323 ] | 321 ] |
| (...skipping 1514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1838 if (!is_component_build) { | 1836 if (!is_component_build) { |
| 1839 sources += [ | 1837 sources += [ |
| 1840 "$target_gen_dir/d8-js.cc", | 1838 "$target_gen_dir/d8-js.cc", |
| 1841 ] | 1839 ] |
| 1842 } | 1840 } |
| 1843 if (v8_enable_i18n_support) { | 1841 if (v8_enable_i18n_support) { |
| 1844 deps += [ "//third_party/icu" ] | 1842 deps += [ "//third_party/icu" ] |
| 1845 } | 1843 } |
| 1846 } | 1844 } |
| 1847 } | 1845 } |
| OLD | NEW |