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 1092 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1103 "src/msan.h", | 1103 "src/msan.h", |
1104 "src/objects-debug.cc", | 1104 "src/objects-debug.cc", |
1105 "src/objects-inl.h", | 1105 "src/objects-inl.h", |
1106 "src/objects-printer.cc", | 1106 "src/objects-printer.cc", |
1107 "src/objects.cc", | 1107 "src/objects.cc", |
1108 "src/objects.h", | 1108 "src/objects.h", |
1109 "src/optimizing-compile-dispatcher.cc", | 1109 "src/optimizing-compile-dispatcher.cc", |
1110 "src/optimizing-compile-dispatcher.h", | 1110 "src/optimizing-compile-dispatcher.h", |
1111 "src/ostreams.cc", | 1111 "src/ostreams.cc", |
1112 "src/ostreams.h", | 1112 "src/ostreams.h", |
1113 "src/pattern-rewriter.cc", | 1113 "src/parameter-initializer-rewriter.cc", |
| 1114 "src/parameter-initializer-rewriter.h", |
1114 "src/parser.cc", | 1115 "src/parser.cc", |
1115 "src/parser.h", | 1116 "src/parser.h", |
| 1117 "src/pattern-rewriter.cc", |
1116 "src/pending-compilation-error-handler.cc", | 1118 "src/pending-compilation-error-handler.cc", |
1117 "src/pending-compilation-error-handler.h", | 1119 "src/pending-compilation-error-handler.h", |
1118 "src/preparse-data-format.h", | 1120 "src/preparse-data-format.h", |
1119 "src/preparse-data.cc", | 1121 "src/preparse-data.cc", |
1120 "src/preparse-data.h", | 1122 "src/preparse-data.h", |
1121 "src/preparser.cc", | 1123 "src/preparser.cc", |
1122 "src/preparser.h", | 1124 "src/preparser.h", |
1123 "src/prettyprinter.cc", | 1125 "src/prettyprinter.cc", |
1124 "src/prettyprinter.h", | 1126 "src/prettyprinter.h", |
1125 "src/profiler/allocation-tracker.cc", | 1127 "src/profiler/allocation-tracker.cc", |
(...skipping 711 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1837 if (!is_component_build) { | 1839 if (!is_component_build) { |
1838 sources += [ | 1840 sources += [ |
1839 "$target_gen_dir/d8-js.cc", | 1841 "$target_gen_dir/d8-js.cc", |
1840 ] | 1842 ] |
1841 } | 1843 } |
1842 if (v8_enable_i18n_support) { | 1844 if (v8_enable_i18n_support) { |
1843 deps += [ "//third_party/icu" ] | 1845 deps += [ "//third_party/icu" ] |
1844 } | 1846 } |
1845 } | 1847 } |
1846 } | 1848 } |
OLD | NEW |