| 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 742 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 753 "src/compiler/common-operator.h", | 753 "src/compiler/common-operator.h", |
| 754 "src/compiler/control-builders.cc", | 754 "src/compiler/control-builders.cc", |
| 755 "src/compiler/control-builders.h", | 755 "src/compiler/control-builders.h", |
| 756 "src/compiler/control-equivalence.cc", | 756 "src/compiler/control-equivalence.cc", |
| 757 "src/compiler/control-equivalence.h", | 757 "src/compiler/control-equivalence.h", |
| 758 "src/compiler/control-flow-optimizer.cc", | 758 "src/compiler/control-flow-optimizer.cc", |
| 759 "src/compiler/control-flow-optimizer.h", | 759 "src/compiler/control-flow-optimizer.h", |
| 760 "src/compiler/dead-code-elimination.cc", | 760 "src/compiler/dead-code-elimination.cc", |
| 761 "src/compiler/dead-code-elimination.h", | 761 "src/compiler/dead-code-elimination.h", |
| 762 "src/compiler/diamond.h", | 762 "src/compiler/diamond.h", |
| 763 "src/compiler/escape-analysis.cc", |
| 764 "src/compiler/escape-analysis.h", |
| 765 "src/compiler/escape-analysis-reducer.cc", |
| 766 "src/compiler/escape-analysis-reducer.h", |
| 763 "src/compiler/frame.cc", | 767 "src/compiler/frame.cc", |
| 764 "src/compiler/frame.h", | 768 "src/compiler/frame.h", |
| 765 "src/compiler/frame-elider.cc", | 769 "src/compiler/frame-elider.cc", |
| 766 "src/compiler/frame-elider.h", | 770 "src/compiler/frame-elider.h", |
| 767 "src/compiler/frame-states.cc", | 771 "src/compiler/frame-states.cc", |
| 768 "src/compiler/frame-states.h", | 772 "src/compiler/frame-states.h", |
| 769 "src/compiler/gap-resolver.cc", | 773 "src/compiler/gap-resolver.cc", |
| 770 "src/compiler/gap-resolver.h", | 774 "src/compiler/gap-resolver.h", |
| 771 "src/compiler/graph-reducer.cc", | 775 "src/compiler/graph-reducer.cc", |
| 772 "src/compiler/graph-reducer.h", | 776 "src/compiler/graph-reducer.h", |
| (...skipping 1099 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1872 if (!is_component_build) { | 1876 if (!is_component_build) { |
| 1873 sources += [ | 1877 sources += [ |
| 1874 "$target_gen_dir/d8-js.cc", | 1878 "$target_gen_dir/d8-js.cc", |
| 1875 ] | 1879 ] |
| 1876 } | 1880 } |
| 1877 if (v8_enable_i18n_support) { | 1881 if (v8_enable_i18n_support) { |
| 1878 deps += [ "//third_party/icu" ] | 1882 deps += [ "//third_party/icu" ] |
| 1879 } | 1883 } |
| 1880 } | 1884 } |
| 1881 } | 1885 } |
| OLD | NEW |