| 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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 "src/js/weak-collection.js", | 224 "src/js/weak-collection.js", |
| 225 "src/js/collection-iterator.js", | 225 "src/js/collection-iterator.js", |
| 226 "src/js/promise.js", | 226 "src/js/promise.js", |
| 227 "src/js/messages.js", | 227 "src/js/messages.js", |
| 228 "src/js/json.js", | 228 "src/js/json.js", |
| 229 "src/js/array-iterator.js", | 229 "src/js/array-iterator.js", |
| 230 "src/js/string-iterator.js", | 230 "src/js/string-iterator.js", |
| 231 "src/js/templates.js", | 231 "src/js/templates.js", |
| 232 "src/js/harmony-array.js", | 232 "src/js/harmony-array.js", |
| 233 "src/js/harmony-typedarray.js", | 233 "src/js/harmony-typedarray.js", |
| 234 "src/js/spread.js", |
| 234 "src/debug/mirrors.js", | 235 "src/debug/mirrors.js", |
| 235 "src/debug/debug.js", | 236 "src/debug/debug.js", |
| 236 "src/debug/liveedit.js", | 237 "src/debug/liveedit.js", |
| 237 ] | 238 ] |
| 238 | 239 |
| 239 outputs = [ | 240 outputs = [ |
| 240 "$target_gen_dir/libraries.cc", | 241 "$target_gen_dir/libraries.cc", |
| 241 ] | 242 ] |
| 242 | 243 |
| 243 if (v8_enable_i18n_support) { | 244 if (v8_enable_i18n_support) { |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 "src/js/macros.py", | 306 "src/js/macros.py", |
| 306 "src/messages.h", | 307 "src/messages.h", |
| 307 "src/js/proxy.js", | 308 "src/js/proxy.js", |
| 308 "src/js/generator.js", | 309 "src/js/generator.js", |
| 309 "src/js/harmony-atomics.js", | 310 "src/js/harmony-atomics.js", |
| 310 "src/js/harmony-array-includes.js", | 311 "src/js/harmony-array-includes.js", |
| 311 "src/js/harmony-concat-spreadable.js", | 312 "src/js/harmony-concat-spreadable.js", |
| 312 "src/js/harmony-tostring.js", | 313 "src/js/harmony-tostring.js", |
| 313 "src/js/harmony-regexp.js", | 314 "src/js/harmony-regexp.js", |
| 314 "src/js/harmony-reflect.js", | 315 "src/js/harmony-reflect.js", |
| 315 "src/js/harmony-spread.js", | |
| 316 "src/js/harmony-object-observe.js", | 316 "src/js/harmony-object-observe.js", |
| 317 "src/js/harmony-sharedarraybuffer.js", | 317 "src/js/harmony-sharedarraybuffer.js", |
| 318 "src/js/harmony-simd.js" | 318 "src/js/harmony-simd.js" |
| 319 ] | 319 ] |
| 320 | 320 |
| 321 outputs = [ | 321 outputs = [ |
| 322 "$target_gen_dir/experimental-libraries.cc", | 322 "$target_gen_dir/experimental-libraries.cc", |
| 323 ] | 323 ] |
| 324 | 324 |
| 325 args = [ | 325 args = [ |
| (...skipping 1511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1837 if (!is_component_build) { | 1837 if (!is_component_build) { |
| 1838 sources += [ | 1838 sources += [ |
| 1839 "$target_gen_dir/d8-js.cc", | 1839 "$target_gen_dir/d8-js.cc", |
| 1840 ] | 1840 ] |
| 1841 } | 1841 } |
| 1842 if (v8_enable_i18n_support) { | 1842 if (v8_enable_i18n_support) { |
| 1843 deps += [ "//third_party/icu" ] | 1843 deps += [ "//third_party/icu" ] |
| 1844 } | 1844 } |
| 1845 } | 1845 } |
| 1846 } | 1846 } |
| OLD | NEW |