| 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 791 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 802 "src/ic/handler-compiler.h", | 802 "src/ic/handler-compiler.h", |
| 803 "src/ic/ic-inl.h", | 803 "src/ic/ic-inl.h", |
| 804 "src/ic/ic-state.cc", | 804 "src/ic/ic-state.cc", |
| 805 "src/ic/ic-state.h", | 805 "src/ic/ic-state.h", |
| 806 "src/ic/ic.cc", | 806 "src/ic/ic.cc", |
| 807 "src/ic/ic.h", | 807 "src/ic/ic.h", |
| 808 "src/ic/ic-compiler.cc", | 808 "src/ic/ic-compiler.cc", |
| 809 "src/ic/ic-compiler.h", | 809 "src/ic/ic-compiler.h", |
| 810 "src/ic/stub-cache.cc", | 810 "src/ic/stub-cache.cc", |
| 811 "src/ic/stub-cache.h", | 811 "src/ic/stub-cache.h", |
| 812 "src/interface.cc", | |
| 813 "src/interface.h", | |
| 814 "src/interface-descriptors.cc", | 812 "src/interface-descriptors.cc", |
| 815 "src/interface-descriptors.h", | 813 "src/interface-descriptors.h", |
| 816 "src/interpreter-irregexp.cc", | 814 "src/interpreter-irregexp.cc", |
| 817 "src/interpreter-irregexp.h", | 815 "src/interpreter-irregexp.h", |
| 818 "src/isolate.cc", | 816 "src/isolate.cc", |
| 819 "src/isolate.h", | 817 "src/isolate.h", |
| 820 "src/json-parser.h", | 818 "src/json-parser.h", |
| 821 "src/json-stringifier.h", | 819 "src/json-stringifier.h", |
| 822 "src/jsregexp-inl.h", | 820 "src/jsregexp-inl.h", |
| 823 "src/jsregexp.cc", | 821 "src/jsregexp.cc", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 840 "src/log-utils.cc", | 838 "src/log-utils.cc", |
| 841 "src/log-utils.h", | 839 "src/log-utils.h", |
| 842 "src/log.cc", | 840 "src/log.cc", |
| 843 "src/log.h", | 841 "src/log.h", |
| 844 "src/lookup-inl.h", | 842 "src/lookup-inl.h", |
| 845 "src/lookup.cc", | 843 "src/lookup.cc", |
| 846 "src/lookup.h", | 844 "src/lookup.h", |
| 847 "src/macro-assembler.h", | 845 "src/macro-assembler.h", |
| 848 "src/messages.cc", | 846 "src/messages.cc", |
| 849 "src/messages.h", | 847 "src/messages.h", |
| 848 "src/modules.cc", |
| 849 "src/modules.h", |
| 850 "src/msan.h", | 850 "src/msan.h", |
| 851 "src/natives.h", | 851 "src/natives.h", |
| 852 "src/objects-debug.cc", | 852 "src/objects-debug.cc", |
| 853 "src/objects-inl.h", | 853 "src/objects-inl.h", |
| 854 "src/objects-printer.cc", | 854 "src/objects-printer.cc", |
| 855 "src/objects.cc", | 855 "src/objects.cc", |
| 856 "src/objects.h", | 856 "src/objects.h", |
| 857 "src/optimizing-compiler-thread.cc", | 857 "src/optimizing-compiler-thread.cc", |
| 858 "src/optimizing-compiler-thread.h", | 858 "src/optimizing-compiler-thread.h", |
| 859 "src/ostreams.cc", | 859 "src/ostreams.cc", |
| (...skipping 694 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1554 sources += [ | 1554 sources += [ |
| 1555 "src/d8-debug.cc", | 1555 "src/d8-debug.cc", |
| 1556 "$target_gen_dir/d8-js.cc", | 1556 "$target_gen_dir/d8-js.cc", |
| 1557 ] | 1557 ] |
| 1558 } | 1558 } |
| 1559 if (v8_enable_i18n_support) { | 1559 if (v8_enable_i18n_support) { |
| 1560 deps += [ "//third_party/icu" ] | 1560 deps += [ "//third_party/icu" ] |
| 1561 } | 1561 } |
| 1562 } | 1562 } |
| 1563 } | 1563 } |
| OLD | NEW |