| 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 934 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2077 | 2079 |
| 2078 configs -= [ "//build/config/compiler:chromium_code" ] | 2080 configs -= [ "//build/config/compiler:chromium_code" ] |
| 2079 configs += [ "//build/config/compiler:no_chromium_code" ] | 2081 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 2080 configs += [ | 2082 configs += [ |
| 2081 ":internal_config", | 2083 ":internal_config", |
| 2082 ":libplatform_config", | 2084 ":libplatform_config", |
| 2083 ":features", | 2085 ":features", |
| 2084 ":toolchain", | 2086 ":toolchain", |
| 2085 ] | 2087 ] |
| 2086 } | 2088 } |
| OLD | NEW |