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 841 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
852 "src/objects-inl.h", | 852 "src/objects-inl.h", |
853 "src/objects-printer.cc", | 853 "src/objects-printer.cc", |
854 "src/objects.cc", | 854 "src/objects.cc", |
855 "src/objects.h", | 855 "src/objects.h", |
856 "src/optimizing-compiler-thread.cc", | 856 "src/optimizing-compiler-thread.cc", |
857 "src/optimizing-compiler-thread.h", | 857 "src/optimizing-compiler-thread.h", |
858 "src/ostreams.cc", | 858 "src/ostreams.cc", |
859 "src/ostreams.h", | 859 "src/ostreams.h", |
860 "src/parser.cc", | 860 "src/parser.cc", |
861 "src/parser.h", | 861 "src/parser.h", |
| 862 "src/pending-compilation-error-handler.cc", |
| 863 "src/pending-compilation-error-handler.h", |
862 "src/perf-jit.cc", | 864 "src/perf-jit.cc", |
863 "src/perf-jit.h", | 865 "src/perf-jit.h", |
864 "src/preparse-data-format.h", | 866 "src/preparse-data-format.h", |
865 "src/preparse-data.cc", | 867 "src/preparse-data.cc", |
866 "src/preparse-data.h", | 868 "src/preparse-data.h", |
867 "src/preparser.cc", | 869 "src/preparser.cc", |
868 "src/preparser.h", | 870 "src/preparser.h", |
869 "src/prettyprinter.cc", | 871 "src/prettyprinter.cc", |
870 "src/prettyprinter.h", | 872 "src/prettyprinter.h", |
871 "src/profile-generator-inl.h", | 873 "src/profile-generator-inl.h", |
(...skipping 683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1555 sources += [ | 1557 sources += [ |
1556 "src/d8-debug.cc", | 1558 "src/d8-debug.cc", |
1557 "$target_gen_dir/d8-js.cc", | 1559 "$target_gen_dir/d8-js.cc", |
1558 ] | 1560 ] |
1559 } | 1561 } |
1560 if (v8_enable_i18n_support) { | 1562 if (v8_enable_i18n_support) { |
1561 deps += [ "//third_party/icu" ] | 1563 deps += [ "//third_party/icu" ] |
1562 } | 1564 } |
1563 } | 1565 } |
1564 } | 1566 } |
OLD | NEW |