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 1106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1117 "src/profiler/heap-profiler.cc", | 1117 "src/profiler/heap-profiler.cc", |
1118 "src/profiler/heap-profiler.h", | 1118 "src/profiler/heap-profiler.h", |
1119 "src/profiler/heap-snapshot-generator-inl.h", | 1119 "src/profiler/heap-snapshot-generator-inl.h", |
1120 "src/profiler/heap-snapshot-generator.cc", | 1120 "src/profiler/heap-snapshot-generator.cc", |
1121 "src/profiler/heap-snapshot-generator.h", | 1121 "src/profiler/heap-snapshot-generator.h", |
1122 "src/profiler/profile-generator-inl.h", | 1122 "src/profiler/profile-generator-inl.h", |
1123 "src/profiler/profile-generator.cc", | 1123 "src/profiler/profile-generator.cc", |
1124 "src/profiler/profile-generator.h", | 1124 "src/profiler/profile-generator.h", |
1125 "src/profiler/sampler.cc", | 1125 "src/profiler/sampler.cc", |
1126 "src/profiler/sampler.h", | 1126 "src/profiler/sampler.h", |
| 1127 "src/profiler/strings-storage.cc", |
| 1128 "src/profiler/strings-storage.h", |
1127 "src/profiler/unbound-queue-inl.h", | 1129 "src/profiler/unbound-queue-inl.h", |
1128 "src/profiler/unbound-queue.h", | 1130 "src/profiler/unbound-queue.h", |
1129 "src/property-details.h", | 1131 "src/property-details.h", |
1130 "src/property.cc", | 1132 "src/property.cc", |
1131 "src/property.h", | 1133 "src/property.h", |
1132 "src/prototype.h", | 1134 "src/prototype.h", |
1133 "src/rewriter.cc", | 1135 "src/rewriter.cc", |
1134 "src/rewriter.h", | 1136 "src/rewriter.h", |
1135 "src/regexp/bytecodes-irregexp.h", | 1137 "src/regexp/bytecodes-irregexp.h", |
1136 "src/regexp/interpreter-irregexp.cc", | 1138 "src/regexp/interpreter-irregexp.cc", |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1206 "src/splay-tree.h", | 1208 "src/splay-tree.h", |
1207 "src/splay-tree-inl.h", | 1209 "src/splay-tree-inl.h", |
1208 "src/snapshot/snapshot.h", | 1210 "src/snapshot/snapshot.h", |
1209 "src/startup-data-util.h", | 1211 "src/startup-data-util.h", |
1210 "src/startup-data-util.cc", | 1212 "src/startup-data-util.cc", |
1211 "src/string-builder.cc", | 1213 "src/string-builder.cc", |
1212 "src/string-builder.h", | 1214 "src/string-builder.h", |
1213 "src/string-search.h", | 1215 "src/string-search.h", |
1214 "src/string-stream.cc", | 1216 "src/string-stream.cc", |
1215 "src/string-stream.h", | 1217 "src/string-stream.h", |
1216 "src/strings-storage.cc", | |
1217 "src/strings-storage.h", | |
1218 "src/strtod.cc", | 1218 "src/strtod.cc", |
1219 "src/strtod.h", | 1219 "src/strtod.h", |
1220 "src/token.cc", | 1220 "src/token.cc", |
1221 "src/token.h", | 1221 "src/token.h", |
1222 "src/transitions-inl.h", | 1222 "src/transitions-inl.h", |
1223 "src/transitions.cc", | 1223 "src/transitions.cc", |
1224 "src/transitions.h", | 1224 "src/transitions.h", |
1225 "src/type-feedback-vector-inl.h", | 1225 "src/type-feedback-vector-inl.h", |
1226 "src/type-feedback-vector.cc", | 1226 "src/type-feedback-vector.cc", |
1227 "src/type-feedback-vector.h", | 1227 "src/type-feedback-vector.h", |
(...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1818 if (!is_component_build) { | 1818 if (!is_component_build) { |
1819 sources += [ | 1819 sources += [ |
1820 "$target_gen_dir/d8-js.cc", | 1820 "$target_gen_dir/d8-js.cc", |
1821 ] | 1821 ] |
1822 } | 1822 } |
1823 if (v8_enable_i18n_support) { | 1823 if (v8_enable_i18n_support) { |
1824 deps += [ "//third_party/icu" ] | 1824 deps += [ "//third_party/icu" ] |
1825 } | 1825 } |
1826 } | 1826 } |
1827 } | 1827 } |
OLD | NEW |