| 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 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
| 9 | 9 |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 745 "src/compiler/common-operator.h", | 745 "src/compiler/common-operator.h", |
| 746 "src/compiler/control-builders.cc", | 746 "src/compiler/control-builders.cc", |
| 747 "src/compiler/control-builders.h", | 747 "src/compiler/control-builders.h", |
| 748 "src/compiler/control-equivalence.cc", | 748 "src/compiler/control-equivalence.cc", |
| 749 "src/compiler/control-equivalence.h", | 749 "src/compiler/control-equivalence.h", |
| 750 "src/compiler/control-flow-optimizer.cc", | 750 "src/compiler/control-flow-optimizer.cc", |
| 751 "src/compiler/control-flow-optimizer.h", | 751 "src/compiler/control-flow-optimizer.h", |
| 752 "src/compiler/dead-code-elimination.cc", | 752 "src/compiler/dead-code-elimination.cc", |
| 753 "src/compiler/dead-code-elimination.h", | 753 "src/compiler/dead-code-elimination.h", |
| 754 "src/compiler/diamond.h", | 754 "src/compiler/diamond.h", |
| 755 "src/compiler/fast-accessor-assembler.cc", |
| 756 "src/compiler/fast-accessor-assembler.h", |
| 755 "src/compiler/frame.cc", | 757 "src/compiler/frame.cc", |
| 756 "src/compiler/frame.h", | 758 "src/compiler/frame.h", |
| 757 "src/compiler/frame-elider.cc", | 759 "src/compiler/frame-elider.cc", |
| 758 "src/compiler/frame-elider.h", | 760 "src/compiler/frame-elider.h", |
| 759 "src/compiler/frame-states.cc", | 761 "src/compiler/frame-states.cc", |
| 760 "src/compiler/frame-states.h", | 762 "src/compiler/frame-states.h", |
| 761 "src/compiler/gap-resolver.cc", | 763 "src/compiler/gap-resolver.cc", |
| 762 "src/compiler/gap-resolver.h", | 764 "src/compiler/gap-resolver.h", |
| 763 "src/compiler/graph-reducer.cc", | 765 "src/compiler/graph-reducer.cc", |
| 764 "src/compiler/graph-reducer.h", | 766 "src/compiler/graph-reducer.h", |
| (...skipping 1105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1870 if (!is_component_build) { | 1872 if (!is_component_build) { |
| 1871 sources += [ | 1873 sources += [ |
| 1872 "$target_gen_dir/d8-js.cc", | 1874 "$target_gen_dir/d8-js.cc", |
| 1873 ] | 1875 ] |
| 1874 } | 1876 } |
| 1875 if (v8_enable_i18n_support) { | 1877 if (v8_enable_i18n_support) { |
| 1876 deps += [ "//third_party/icu" ] | 1878 deps += [ "//third_party/icu" ] |
| 1877 } | 1879 } |
| 1878 } | 1880 } |
| 1879 } | 1881 } |
| OLD | NEW |