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 # Because standalone V8 builds are not supported, assume this is part of a | 5 # Because standalone V8 builds are not supported, assume this is part of a |
6 # Chromium build. | 6 # Chromium build. |
7 import("//build/module_args/v8.gni") | 7 import("//build/module_args/v8.gni") |
8 | 8 |
9 # TODO(jochen): These will need to be user-settable to support standalone V8 | 9 # TODO(jochen): These will need to be user-settable to support standalone V8 |
10 # builds. | 10 # builds. |
(...skipping 923 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
934 "src/snapshot-common.cc", | 934 "src/snapshot-common.cc", |
935 "src/snapshot-source-sink.cc", | 935 "src/snapshot-source-sink.cc", |
936 "src/snapshot-source-sink.h", | 936 "src/snapshot-source-sink.h", |
937 "src/snapshot.h", | 937 "src/snapshot.h", |
938 "src/string-builder.cc", | 938 "src/string-builder.cc", |
939 "src/string-builder.h", | 939 "src/string-builder.h", |
940 "src/string-search.cc", | 940 "src/string-search.cc", |
941 "src/string-search.h", | 941 "src/string-search.h", |
942 "src/string-stream.cc", | 942 "src/string-stream.cc", |
943 "src/string-stream.h", | 943 "src/string-stream.h", |
| 944 "src/strings-storage.cc", |
| 945 "src/strings-storage.h", |
944 "src/strtod.cc", | 946 "src/strtod.cc", |
945 "src/strtod.h", | 947 "src/strtod.h", |
946 "src/token.cc", | 948 "src/token.cc", |
947 "src/token.h", | 949 "src/token.h", |
948 "src/transitions-inl.h", | 950 "src/transitions-inl.h", |
949 "src/transitions.cc", | 951 "src/transitions.cc", |
950 "src/transitions.h", | 952 "src/transitions.h", |
951 "src/type-feedback-vector-inl.h", | 953 "src/type-feedback-vector-inl.h", |
952 "src/type-feedback-vector.cc", | 954 "src/type-feedback-vector.cc", |
953 "src/type-feedback-vector.h", | 955 "src/type-feedback-vector.h", |
(...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1552 sources += [ | 1554 sources += [ |
1553 "src/d8-debug.cc", | 1555 "src/d8-debug.cc", |
1554 "$target_gen_dir/d8-js.cc", | 1556 "$target_gen_dir/d8-js.cc", |
1555 ] | 1557 ] |
1556 } | 1558 } |
1557 if (v8_enable_i18n_support) { | 1559 if (v8_enable_i18n_support) { |
1558 deps += [ "//third_party/icu" ] | 1560 deps += [ "//third_party/icu" ] |
1559 } | 1561 } |
1560 } | 1562 } |
1561 } | 1563 } |
OLD | NEW |