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 1066 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1077 "src/interface-descriptors.h", | 1077 "src/interface-descriptors.h", |
1078 "src/interpreter/bytecodes.cc", | 1078 "src/interpreter/bytecodes.cc", |
1079 "src/interpreter/bytecodes.h", | 1079 "src/interpreter/bytecodes.h", |
1080 "src/interpreter/bytecode-array-builder.cc", | 1080 "src/interpreter/bytecode-array-builder.cc", |
1081 "src/interpreter/bytecode-array-builder.h", | 1081 "src/interpreter/bytecode-array-builder.h", |
1082 "src/interpreter/bytecode-array-iterator.cc", | 1082 "src/interpreter/bytecode-array-iterator.cc", |
1083 "src/interpreter/bytecode-array-iterator.h", | 1083 "src/interpreter/bytecode-array-iterator.h", |
1084 "src/interpreter/bytecode-generator.cc", | 1084 "src/interpreter/bytecode-generator.cc", |
1085 "src/interpreter/bytecode-generator.h", | 1085 "src/interpreter/bytecode-generator.h", |
1086 "src/interpreter/bytecode-traits.h", | 1086 "src/interpreter/bytecode-traits.h", |
| 1087 "src/interpreter/constant-array-builder.cc", |
| 1088 "src/interpreter/constant-array-builder.h", |
1087 "src/interpreter/control-flow-builders.cc", | 1089 "src/interpreter/control-flow-builders.cc", |
1088 "src/interpreter/control-flow-builders.h", | 1090 "src/interpreter/control-flow-builders.h", |
1089 "src/interpreter/interpreter.cc", | 1091 "src/interpreter/interpreter.cc", |
1090 "src/interpreter/interpreter.h", | 1092 "src/interpreter/interpreter.h", |
1091 "src/isolate-inl.h", | 1093 "src/isolate-inl.h", |
1092 "src/isolate.cc", | 1094 "src/isolate.cc", |
1093 "src/isolate.h", | 1095 "src/isolate.h", |
1094 "src/json-stringifier.h", | 1096 "src/json-stringifier.h", |
1095 "src/key-accumulator.h", | 1097 "src/key-accumulator.h", |
1096 "src/key-accumulator.cc", | 1098 "src/key-accumulator.cc", |
(...skipping 760 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1857 if (!is_component_build) { | 1859 if (!is_component_build) { |
1858 sources += [ | 1860 sources += [ |
1859 "$target_gen_dir/d8-js.cc", | 1861 "$target_gen_dir/d8-js.cc", |
1860 ] | 1862 ] |
1861 } | 1863 } |
1862 if (v8_enable_i18n_support) { | 1864 if (v8_enable_i18n_support) { |
1863 deps += [ "//third_party/icu" ] | 1865 deps += [ "//third_party/icu" ] |
1864 } | 1866 } |
1865 } | 1867 } |
1866 } | 1868 } |
OLD | NEW |