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 1112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1123 "src/interpreter/constant-array-builder.cc", | 1123 "src/interpreter/constant-array-builder.cc", |
1124 "src/interpreter/constant-array-builder.h", | 1124 "src/interpreter/constant-array-builder.h", |
1125 "src/interpreter/control-flow-builders.cc", | 1125 "src/interpreter/control-flow-builders.cc", |
1126 "src/interpreter/control-flow-builders.h", | 1126 "src/interpreter/control-flow-builders.h", |
1127 "src/interpreter/handler-table-builder.cc", | 1127 "src/interpreter/handler-table-builder.cc", |
1128 "src/interpreter/handler-table-builder.h", | 1128 "src/interpreter/handler-table-builder.h", |
1129 "src/interpreter/interpreter.cc", | 1129 "src/interpreter/interpreter.cc", |
1130 "src/interpreter/interpreter.h", | 1130 "src/interpreter/interpreter.h", |
1131 "src/interpreter/interpreter-assembler.cc", | 1131 "src/interpreter/interpreter-assembler.cc", |
1132 "src/interpreter/interpreter-assembler.h", | 1132 "src/interpreter/interpreter-assembler.h", |
| 1133 "src/interpreter/interpreter-intrinsics.cc", |
| 1134 "src/interpreter/interpreter-intrinsics.h", |
1133 "src/interpreter/register-translator.cc", | 1135 "src/interpreter/register-translator.cc", |
1134 "src/interpreter/register-translator.h", | 1136 "src/interpreter/register-translator.h", |
1135 "src/interpreter/source-position-table.cc", | 1137 "src/interpreter/source-position-table.cc", |
1136 "src/interpreter/source-position-table.h", | 1138 "src/interpreter/source-position-table.h", |
1137 "src/isolate-inl.h", | 1139 "src/isolate-inl.h", |
1138 "src/isolate.cc", | 1140 "src/isolate.cc", |
1139 "src/isolate.h", | 1141 "src/isolate.h", |
1140 "src/json-parser.h", | 1142 "src/json-parser.h", |
1141 "src/json-stringifier.h", | 1143 "src/json-stringifier.h", |
1142 "src/key-accumulator.h", | 1144 "src/key-accumulator.h", |
(...skipping 939 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2082 | 2084 |
2083 configs -= [ "//build/config/compiler:chromium_code" ] | 2085 configs -= [ "//build/config/compiler:chromium_code" ] |
2084 configs += [ "//build/config/compiler:no_chromium_code" ] | 2086 configs += [ "//build/config/compiler:no_chromium_code" ] |
2085 configs += [ | 2087 configs += [ |
2086 ":internal_config", | 2088 ":internal_config", |
2087 ":libplatform_config", | 2089 ":libplatform_config", |
2088 ":features", | 2090 ":features", |
2089 ":toolchain", | 2091 ":toolchain", |
2090 ] | 2092 ] |
2091 } | 2093 } |
OLD | NEW |