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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 "src/proxy.js", | 272 "src/proxy.js", |
273 "src/generator.js", | 273 "src/generator.js", |
274 "src/harmony-atomics.js", | 274 "src/harmony-atomics.js", |
275 "src/harmony-array-includes.js", | 275 "src/harmony-array-includes.js", |
276 "src/harmony-concat-spreadable.js", | 276 "src/harmony-concat-spreadable.js", |
277 "src/harmony-tostring.js", | 277 "src/harmony-tostring.js", |
278 "src/harmony-regexp.js", | 278 "src/harmony-regexp.js", |
279 "src/harmony-reflect.js", | 279 "src/harmony-reflect.js", |
280 "src/harmony-spread.js", | 280 "src/harmony-spread.js", |
281 "src/harmony-object.js", | 281 "src/harmony-object.js", |
282 "src/harmony-sharedarraybuffer.js" | 282 "src/harmony-sharedarraybuffer.js", |
| 283 "src/harmony-simd.js" |
283 ] | 284 ] |
284 | 285 |
285 outputs = [ | 286 outputs = [ |
286 "$target_gen_dir/experimental-libraries.cc", | 287 "$target_gen_dir/experimental-libraries.cc", |
287 ] | 288 ] |
288 | 289 |
289 args = [ | 290 args = [ |
290 rebase_path("$target_gen_dir/experimental-libraries.cc", | 291 rebase_path("$target_gen_dir/experimental-libraries.cc", |
291 root_build_dir), | 292 root_build_dir), |
292 "EXPERIMENTAL", | 293 "EXPERIMENTAL", |
(...skipping 744 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1037 "src/runtime/runtime-json.cc", | 1038 "src/runtime/runtime-json.cc", |
1038 "src/runtime/runtime-literals.cc", | 1039 "src/runtime/runtime-literals.cc", |
1039 "src/runtime/runtime-liveedit.cc", | 1040 "src/runtime/runtime-liveedit.cc", |
1040 "src/runtime/runtime-maths.cc", | 1041 "src/runtime/runtime-maths.cc", |
1041 "src/runtime/runtime-numbers.cc", | 1042 "src/runtime/runtime-numbers.cc", |
1042 "src/runtime/runtime-object.cc", | 1043 "src/runtime/runtime-object.cc", |
1043 "src/runtime/runtime-observe.cc", | 1044 "src/runtime/runtime-observe.cc", |
1044 "src/runtime/runtime-proxy.cc", | 1045 "src/runtime/runtime-proxy.cc", |
1045 "src/runtime/runtime-regexp.cc", | 1046 "src/runtime/runtime-regexp.cc", |
1046 "src/runtime/runtime-scopes.cc", | 1047 "src/runtime/runtime-scopes.cc", |
| 1048 "src/runtime/runtime-simd.cc", |
1047 "src/runtime/runtime-strings.cc", | 1049 "src/runtime/runtime-strings.cc", |
1048 "src/runtime/runtime-symbol.cc", | 1050 "src/runtime/runtime-symbol.cc", |
1049 "src/runtime/runtime-test.cc", | 1051 "src/runtime/runtime-test.cc", |
1050 "src/runtime/runtime-typedarray.cc", | 1052 "src/runtime/runtime-typedarray.cc", |
1051 "src/runtime/runtime-uri.cc", | 1053 "src/runtime/runtime-uri.cc", |
1052 "src/runtime/runtime-utils.h", | 1054 "src/runtime/runtime-utils.h", |
1053 "src/runtime/runtime.cc", | 1055 "src/runtime/runtime.cc", |
1054 "src/runtime/runtime.h", | 1056 "src/runtime/runtime.h", |
1055 "src/safepoint-table.cc", | 1057 "src/safepoint-table.cc", |
1056 "src/safepoint-table.h", | 1058 "src/safepoint-table.h", |
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1713 "src/d8-debug.cc", | 1715 "src/d8-debug.cc", |
1714 "src/d8-debug.h", | 1716 "src/d8-debug.h", |
1715 "$target_gen_dir/d8-js.cc", | 1717 "$target_gen_dir/d8-js.cc", |
1716 ] | 1718 ] |
1717 } | 1719 } |
1718 if (v8_enable_i18n_support) { | 1720 if (v8_enable_i18n_support) { |
1719 deps += [ "//third_party/icu" ] | 1721 deps += [ "//third_party/icu" ] |
1720 } | 1722 } |
1721 } | 1723 } |
1722 } | 1724 } |
OLD | NEW |