| 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 | 8 |
| 9 # Because standalone V8 builds are not supported, assume this is part of a | 9 # Because standalone V8 builds are not supported, assume this is part of a |
| 10 # Chromium build. | 10 # Chromium build. |
| (...skipping 816 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 827 "src/counters.cc", | 827 "src/counters.cc", |
| 828 "src/counters.h", | 828 "src/counters.h", |
| 829 "src/cpu-profiler-inl.h", | 829 "src/cpu-profiler-inl.h", |
| 830 "src/cpu-profiler.cc", | 830 "src/cpu-profiler.cc", |
| 831 "src/cpu-profiler.h", | 831 "src/cpu-profiler.h", |
| 832 "src/date.cc", | 832 "src/date.cc", |
| 833 "src/date.h", | 833 "src/date.h", |
| 834 "src/dateparser-inl.h", | 834 "src/dateparser-inl.h", |
| 835 "src/dateparser.cc", | 835 "src/dateparser.cc", |
| 836 "src/dateparser.h", | 836 "src/dateparser.h", |
| 837 "src/debug/debug-evaluate.cc", |
| 838 "src/debug/debug-evaluate.h", |
| 839 "src/debug/debug-frames.cc", |
| 840 "src/debug/debug-frames.h", |
| 841 "src/debug/debug-scopes.cc", |
| 842 "src/debug/debug-scopes.h", |
| 837 "src/debug/debug.cc", | 843 "src/debug/debug.cc", |
| 838 "src/debug/debug.h", | 844 "src/debug/debug.h", |
| 839 "src/debug/liveedit.cc", | 845 "src/debug/liveedit.cc", |
| 840 "src/debug/liveedit.h", | 846 "src/debug/liveedit.h", |
| 841 "src/deoptimizer.cc", | 847 "src/deoptimizer.cc", |
| 842 "src/deoptimizer.h", | 848 "src/deoptimizer.h", |
| 843 "src/disasm.h", | 849 "src/disasm.h", |
| 844 "src/disassembler.cc", | 850 "src/disassembler.cc", |
| 845 "src/disassembler.h", | 851 "src/disassembler.h", |
| 846 "src/diy-fp.cc", | 852 "src/diy-fp.cc", |
| (...skipping 922 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1769 if (!is_component_build) { | 1775 if (!is_component_build) { |
| 1770 sources += [ | 1776 sources += [ |
| 1771 "$target_gen_dir/d8-js.cc", | 1777 "$target_gen_dir/d8-js.cc", |
| 1772 ] | 1778 ] |
| 1773 } | 1779 } |
| 1774 if (v8_enable_i18n_support) { | 1780 if (v8_enable_i18n_support) { |
| 1775 deps += [ "//third_party/icu" ] | 1781 deps += [ "//third_party/icu" ] |
| 1776 } | 1782 } |
| 1777 } | 1783 } |
| 1778 } | 1784 } |
| OLD | NEW |