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 1104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1115 "src/interpreter/constant-array-builder.cc", | 1115 "src/interpreter/constant-array-builder.cc", |
1116 "src/interpreter/constant-array-builder.h", | 1116 "src/interpreter/constant-array-builder.h", |
1117 "src/interpreter/control-flow-builders.cc", | 1117 "src/interpreter/control-flow-builders.cc", |
1118 "src/interpreter/control-flow-builders.h", | 1118 "src/interpreter/control-flow-builders.h", |
1119 "src/interpreter/handler-table-builder.cc", | 1119 "src/interpreter/handler-table-builder.cc", |
1120 "src/interpreter/handler-table-builder.h", | 1120 "src/interpreter/handler-table-builder.h", |
1121 "src/interpreter/interpreter.cc", | 1121 "src/interpreter/interpreter.cc", |
1122 "src/interpreter/interpreter.h", | 1122 "src/interpreter/interpreter.h", |
1123 "src/interpreter/register-translator.cc", | 1123 "src/interpreter/register-translator.cc", |
1124 "src/interpreter/register-translator.h", | 1124 "src/interpreter/register-translator.h", |
| 1125 "src/interpreter/source-position-table.cc", |
| 1126 "src/interpreter/source-position-table.h", |
1125 "src/isolate-inl.h", | 1127 "src/isolate-inl.h", |
1126 "src/isolate.cc", | 1128 "src/isolate.cc", |
1127 "src/isolate.h", | 1129 "src/isolate.h", |
1128 "src/json-stringifier.h", | 1130 "src/json-stringifier.h", |
1129 "src/key-accumulator.h", | 1131 "src/key-accumulator.h", |
1130 "src/key-accumulator.cc", | 1132 "src/key-accumulator.cc", |
1131 "src/layout-descriptor-inl.h", | 1133 "src/layout-descriptor-inl.h", |
1132 "src/layout-descriptor.cc", | 1134 "src/layout-descriptor.cc", |
1133 "src/layout-descriptor.h", | 1135 "src/layout-descriptor.h", |
1134 "src/list-inl.h", | 1136 "src/list-inl.h", |
(...skipping 848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1983 ] | 1985 ] |
1984 | 1986 |
1985 configs -= [ "//build/config/compiler:chromium_code" ] | 1987 configs -= [ "//build/config/compiler:chromium_code" ] |
1986 configs += [ "//build/config/compiler:no_chromium_code" ] | 1988 configs += [ "//build/config/compiler:no_chromium_code" ] |
1987 configs += [ | 1989 configs += [ |
1988 ":internal_config", | 1990 ":internal_config", |
1989 ":features", | 1991 ":features", |
1990 ":toolchain", | 1992 ":toolchain", |
1991 ] | 1993 ] |
1992 } | 1994 } |
OLD | NEW |