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 1069 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1080 "src/interface-descriptors.cc", | 1080 "src/interface-descriptors.cc", |
1081 "src/interface-descriptors.h", | 1081 "src/interface-descriptors.h", |
1082 "src/interpreter/bytecodes.cc", | 1082 "src/interpreter/bytecodes.cc", |
1083 "src/interpreter/bytecodes.h", | 1083 "src/interpreter/bytecodes.h", |
1084 "src/interpreter/bytecode-array-builder.cc", | 1084 "src/interpreter/bytecode-array-builder.cc", |
1085 "src/interpreter/bytecode-array-builder.h", | 1085 "src/interpreter/bytecode-array-builder.h", |
1086 "src/interpreter/bytecode-array-iterator.cc", | 1086 "src/interpreter/bytecode-array-iterator.cc", |
1087 "src/interpreter/bytecode-array-iterator.h", | 1087 "src/interpreter/bytecode-array-iterator.h", |
1088 "src/interpreter/bytecode-generator.cc", | 1088 "src/interpreter/bytecode-generator.cc", |
1089 "src/interpreter/bytecode-generator.h", | 1089 "src/interpreter/bytecode-generator.h", |
| 1090 "src/interpreter/bytecode-register-allocator.cc", |
| 1091 "src/interpreter/bytecode-register-allocator.h", |
1090 "src/interpreter/bytecode-traits.h", | 1092 "src/interpreter/bytecode-traits.h", |
1091 "src/interpreter/constant-array-builder.cc", | 1093 "src/interpreter/constant-array-builder.cc", |
1092 "src/interpreter/constant-array-builder.h", | 1094 "src/interpreter/constant-array-builder.h", |
1093 "src/interpreter/control-flow-builders.cc", | 1095 "src/interpreter/control-flow-builders.cc", |
1094 "src/interpreter/control-flow-builders.h", | 1096 "src/interpreter/control-flow-builders.h", |
1095 "src/interpreter/interpreter.cc", | 1097 "src/interpreter/interpreter.cc", |
1096 "src/interpreter/interpreter.h", | 1098 "src/interpreter/interpreter.h", |
1097 "src/isolate-inl.h", | 1099 "src/isolate-inl.h", |
1098 "src/isolate.cc", | 1100 "src/isolate.cc", |
1099 "src/isolate.h", | 1101 "src/isolate.h", |
(...skipping 785 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1885 if (!is_component_build) { | 1887 if (!is_component_build) { |
1886 sources += [ | 1888 sources += [ |
1887 "$target_gen_dir/d8-js.cc", | 1889 "$target_gen_dir/d8-js.cc", |
1888 ] | 1890 ] |
1889 } | 1891 } |
1890 if (v8_enable_i18n_support) { | 1892 if (v8_enable_i18n_support) { |
1891 deps += [ "//third_party/icu" ] | 1893 deps += [ "//third_party/icu" ] |
1892 } | 1894 } |
1893 } | 1895 } |
1894 } | 1896 } |
OLD | NEW |