| 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 952 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 963 "src/objects.h", | 963 "src/objects.h", |
| 964 "src/optimizing-compile-dispatcher.cc", | 964 "src/optimizing-compile-dispatcher.cc", |
| 965 "src/optimizing-compile-dispatcher.h", | 965 "src/optimizing-compile-dispatcher.h", |
| 966 "src/ostreams.cc", | 966 "src/ostreams.cc", |
| 967 "src/ostreams.h", | 967 "src/ostreams.h", |
| 968 "src/pattern-rewriter.cc", | 968 "src/pattern-rewriter.cc", |
| 969 "src/parser.cc", | 969 "src/parser.cc", |
| 970 "src/parser.h", | 970 "src/parser.h", |
| 971 "src/pending-compilation-error-handler.cc", | 971 "src/pending-compilation-error-handler.cc", |
| 972 "src/pending-compilation-error-handler.h", | 972 "src/pending-compilation-error-handler.h", |
| 973 "src/perf-jit.cc", | |
| 974 "src/perf-jit.h", | |
| 975 "src/preparse-data-format.h", | 973 "src/preparse-data-format.h", |
| 976 "src/preparse-data.cc", | 974 "src/preparse-data.cc", |
| 977 "src/preparse-data.h", | 975 "src/preparse-data.h", |
| 978 "src/preparser.cc", | 976 "src/preparser.cc", |
| 979 "src/preparser.h", | 977 "src/preparser.h", |
| 980 "src/prettyprinter.cc", | 978 "src/prettyprinter.cc", |
| 981 "src/prettyprinter.h", | 979 "src/prettyprinter.h", |
| 982 "src/profile-generator-inl.h", | 980 "src/profile-generator-inl.h", |
| 983 "src/profile-generator.cc", | 981 "src/profile-generator.cc", |
| 984 "src/profile-generator.h", | 982 "src/profile-generator.h", |
| (...skipping 690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1675 sources += [ | 1673 sources += [ |
| 1676 "src/d8-debug.cc", | 1674 "src/d8-debug.cc", |
| 1677 "$target_gen_dir/d8-js.cc", | 1675 "$target_gen_dir/d8-js.cc", |
| 1678 ] | 1676 ] |
| 1679 } | 1677 } |
| 1680 if (v8_enable_i18n_support) { | 1678 if (v8_enable_i18n_support) { |
| 1681 deps += [ "//third_party/icu" ] | 1679 deps += [ "//third_party/icu" ] |
| 1682 } | 1680 } |
| 1683 } | 1681 } |
| 1684 } | 1682 } |
| OLD | NEW |