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 985 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
996 "src/rewriter.cc", | 996 "src/rewriter.cc", |
997 "src/rewriter.h", | 997 "src/rewriter.h", |
998 "src/runtime-profiler.cc", | 998 "src/runtime-profiler.cc", |
999 "src/runtime-profiler.h", | 999 "src/runtime-profiler.h", |
1000 "src/runtime/runtime-array.cc", | 1000 "src/runtime/runtime-array.cc", |
1001 "src/runtime/runtime-classes.cc", | 1001 "src/runtime/runtime-classes.cc", |
1002 "src/runtime/runtime-collections.cc", | 1002 "src/runtime/runtime-collections.cc", |
1003 "src/runtime/runtime-compiler.cc", | 1003 "src/runtime/runtime-compiler.cc", |
1004 "src/runtime/runtime-date.cc", | 1004 "src/runtime/runtime-date.cc", |
1005 "src/runtime/runtime-debug.cc", | 1005 "src/runtime/runtime-debug.cc", |
| 1006 "src/runtime/runtime-forin.cc", |
1006 "src/runtime/runtime-function.cc", | 1007 "src/runtime/runtime-function.cc", |
1007 "src/runtime/runtime-generator.cc", | 1008 "src/runtime/runtime-generator.cc", |
1008 "src/runtime/runtime-i18n.cc", | 1009 "src/runtime/runtime-i18n.cc", |
1009 "src/runtime/runtime-internal.cc", | 1010 "src/runtime/runtime-internal.cc", |
1010 "src/runtime/runtime-json.cc", | 1011 "src/runtime/runtime-json.cc", |
1011 "src/runtime/runtime-literals.cc", | 1012 "src/runtime/runtime-literals.cc", |
1012 "src/runtime/runtime-liveedit.cc", | 1013 "src/runtime/runtime-liveedit.cc", |
1013 "src/runtime/runtime-maths.cc", | 1014 "src/runtime/runtime-maths.cc", |
1014 "src/runtime/runtime-numbers.cc", | 1015 "src/runtime/runtime-numbers.cc", |
1015 "src/runtime/runtime-object.cc", | 1016 "src/runtime/runtime-object.cc", |
(...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1673 sources += [ | 1674 sources += [ |
1674 "src/d8-debug.cc", | 1675 "src/d8-debug.cc", |
1675 "$target_gen_dir/d8-js.cc", | 1676 "$target_gen_dir/d8-js.cc", |
1676 ] | 1677 ] |
1677 } | 1678 } |
1678 if (v8_enable_i18n_support) { | 1679 if (v8_enable_i18n_support) { |
1679 deps += [ "//third_party/icu" ] | 1680 deps += [ "//third_party/icu" ] |
1680 } | 1681 } |
1681 } | 1682 } |
1682 } | 1683 } |
OLD | NEW |