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 1211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1222 "src/string-builder.h", | 1222 "src/string-builder.h", |
1223 "src/string-search.h", | 1223 "src/string-search.h", |
1224 "src/string-stream.cc", | 1224 "src/string-stream.cc", |
1225 "src/string-stream.h", | 1225 "src/string-stream.h", |
1226 "src/strings-storage.cc", | 1226 "src/strings-storage.cc", |
1227 "src/strings-storage.h", | 1227 "src/strings-storage.h", |
1228 "src/strtod.cc", | 1228 "src/strtod.cc", |
1229 "src/strtod.h", | 1229 "src/strtod.h", |
1230 "src/token.cc", | 1230 "src/token.cc", |
1231 "src/token.h", | 1231 "src/token.h", |
| 1232 "src/tracing/trace-event.h", |
1232 "src/transitions-inl.h", | 1233 "src/transitions-inl.h", |
1233 "src/transitions.cc", | 1234 "src/transitions.cc", |
1234 "src/transitions.h", | 1235 "src/transitions.h", |
1235 "src/type-feedback-vector-inl.h", | 1236 "src/type-feedback-vector-inl.h", |
1236 "src/type-feedback-vector.cc", | 1237 "src/type-feedback-vector.cc", |
1237 "src/type-feedback-vector.h", | 1238 "src/type-feedback-vector.h", |
1238 "src/type-info.cc", | 1239 "src/type-info.cc", |
1239 "src/type-info.h", | 1240 "src/type-info.h", |
1240 "src/types-inl.h", | 1241 "src/types-inl.h", |
1241 "src/types.cc", | 1242 "src/types.cc", |
(...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1855 if (!is_component_build) { | 1856 if (!is_component_build) { |
1856 sources += [ | 1857 sources += [ |
1857 "$target_gen_dir/d8-js.cc", | 1858 "$target_gen_dir/d8-js.cc", |
1858 ] | 1859 ] |
1859 } | 1860 } |
1860 if (v8_enable_i18n_support) { | 1861 if (v8_enable_i18n_support) { |
1861 deps += [ "//third_party/icu" ] | 1862 deps += [ "//third_party/icu" ] |
1862 } | 1863 } |
1863 } | 1864 } |
1864 } | 1865 } |
OLD | NEW |