| 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 804 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 815 "src/compiler/typer.cc", | 815 "src/compiler/typer.cc", |
| 816 "src/compiler/typer.h", | 816 "src/compiler/typer.h", |
| 817 "src/compiler/value-numbering-reducer.cc", | 817 "src/compiler/value-numbering-reducer.cc", |
| 818 "src/compiler/value-numbering-reducer.h", | 818 "src/compiler/value-numbering-reducer.h", |
| 819 "src/compiler/verifier.cc", | 819 "src/compiler/verifier.cc", |
| 820 "src/compiler/verifier.h", | 820 "src/compiler/verifier.h", |
| 821 "src/compiler/zone-pool.cc", | 821 "src/compiler/zone-pool.cc", |
| 822 "src/compiler/zone-pool.h", | 822 "src/compiler/zone-pool.h", |
| 823 "src/compiler.cc", | 823 "src/compiler.cc", |
| 824 "src/compiler.h", | 824 "src/compiler.h", |
| 825 "src/context-measure.cc", |
| 826 "src/context-measure.h", |
| 825 "src/contexts.cc", | 827 "src/contexts.cc", |
| 826 "src/contexts.h", | 828 "src/contexts.h", |
| 827 "src/conversions-inl.h", | 829 "src/conversions-inl.h", |
| 828 "src/conversions.cc", | 830 "src/conversions.cc", |
| 829 "src/conversions.h", | 831 "src/conversions.h", |
| 830 "src/counters.cc", | 832 "src/counters.cc", |
| 831 "src/counters.h", | 833 "src/counters.h", |
| 832 "src/cpu-profiler-inl.h", | 834 "src/cpu-profiler-inl.h", |
| 833 "src/cpu-profiler.cc", | 835 "src/cpu-profiler.cc", |
| 834 "src/cpu-profiler.h", | 836 "src/cpu-profiler.h", |
| (...skipping 943 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1778 if (!is_component_build) { | 1780 if (!is_component_build) { |
| 1779 sources += [ | 1781 sources += [ |
| 1780 "$target_gen_dir/d8-js.cc", | 1782 "$target_gen_dir/d8-js.cc", |
| 1781 ] | 1783 ] |
| 1782 } | 1784 } |
| 1783 if (v8_enable_i18n_support) { | 1785 if (v8_enable_i18n_support) { |
| 1784 deps += [ "//third_party/icu" ] | 1786 deps += [ "//third_party/icu" ] |
| 1785 } | 1787 } |
| 1786 } | 1788 } |
| 1787 } | 1789 } |
| OLD | NEW |