| 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 1084 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1095 "src/msan.h", | 1095 "src/msan.h", |
| 1096 "src/objects-debug.cc", | 1096 "src/objects-debug.cc", |
| 1097 "src/objects-inl.h", | 1097 "src/objects-inl.h", |
| 1098 "src/objects-printer.cc", | 1098 "src/objects-printer.cc", |
| 1099 "src/objects.cc", | 1099 "src/objects.cc", |
| 1100 "src/objects.h", | 1100 "src/objects.h", |
| 1101 "src/optimizing-compile-dispatcher.cc", | 1101 "src/optimizing-compile-dispatcher.cc", |
| 1102 "src/optimizing-compile-dispatcher.h", | 1102 "src/optimizing-compile-dispatcher.h", |
| 1103 "src/ostreams.cc", | 1103 "src/ostreams.cc", |
| 1104 "src/ostreams.h", | 1104 "src/ostreams.h", |
| 1105 "src/pattern-rewriter.cc", | 1105 "src/parameter-initializer-rewriter.cc", |
| 1106 "src/parameter-initializer-rewriter.h", |
| 1106 "src/parser.cc", | 1107 "src/parser.cc", |
| 1107 "src/parser.h", | 1108 "src/parser.h", |
| 1109 "src/pattern-rewriter.cc", |
| 1108 "src/pending-compilation-error-handler.cc", | 1110 "src/pending-compilation-error-handler.cc", |
| 1109 "src/pending-compilation-error-handler.h", | 1111 "src/pending-compilation-error-handler.h", |
| 1110 "src/preparse-data-format.h", | 1112 "src/preparse-data-format.h", |
| 1111 "src/preparse-data.cc", | 1113 "src/preparse-data.cc", |
| 1112 "src/preparse-data.h", | 1114 "src/preparse-data.h", |
| 1113 "src/preparser.cc", | 1115 "src/preparser.cc", |
| 1114 "src/preparser.h", | 1116 "src/preparser.h", |
| 1115 "src/prettyprinter.cc", | 1117 "src/prettyprinter.cc", |
| 1116 "src/prettyprinter.h", | 1118 "src/prettyprinter.h", |
| 1117 "src/profiler/allocation-tracker.cc", | 1119 "src/profiler/allocation-tracker.cc", |
| (...skipping 711 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1829 if (!is_component_build) { | 1831 if (!is_component_build) { |
| 1830 sources += [ | 1832 sources += [ |
| 1831 "$target_gen_dir/d8-js.cc", | 1833 "$target_gen_dir/d8-js.cc", |
| 1832 ] | 1834 ] |
| 1833 } | 1835 } |
| 1834 if (v8_enable_i18n_support) { | 1836 if (v8_enable_i18n_support) { |
| 1835 deps += [ "//third_party/icu" ] | 1837 deps += [ "//third_party/icu" ] |
| 1836 } | 1838 } |
| 1837 } | 1839 } |
| 1838 } | 1840 } |
| OLD | NEW |