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 1204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1215 "src/identity-map.cc", | 1215 "src/identity-map.cc", |
1216 "src/identity-map.h", | 1216 "src/identity-map.h", |
1217 "src/interface-descriptors.cc", | 1217 "src/interface-descriptors.cc", |
1218 "src/interface-descriptors.h", | 1218 "src/interface-descriptors.h", |
1219 "src/interpreter/bytecode-array-builder.cc", | 1219 "src/interpreter/bytecode-array-builder.cc", |
1220 "src/interpreter/bytecode-array-builder.h", | 1220 "src/interpreter/bytecode-array-builder.h", |
1221 "src/interpreter/bytecode-array-iterator.cc", | 1221 "src/interpreter/bytecode-array-iterator.cc", |
1222 "src/interpreter/bytecode-array-iterator.h", | 1222 "src/interpreter/bytecode-array-iterator.h", |
1223 "src/interpreter/bytecode-generator.cc", | 1223 "src/interpreter/bytecode-generator.cc", |
1224 "src/interpreter/bytecode-generator.h", | 1224 "src/interpreter/bytecode-generator.h", |
| 1225 "src/interpreter/bytecode-peephole-optimizer.cc", |
| 1226 "src/interpreter/bytecode-peephole-optimizer.h", |
1225 "src/interpreter/bytecode-register-allocator.cc", | 1227 "src/interpreter/bytecode-register-allocator.cc", |
1226 "src/interpreter/bytecode-register-allocator.h", | 1228 "src/interpreter/bytecode-register-allocator.h", |
1227 "src/interpreter/bytecode-traits.h", | 1229 "src/interpreter/bytecode-traits.h", |
| 1230 "src/interpreter/bytecode-writer.cc", |
| 1231 "src/interpreter/bytecode-writer.h", |
1228 "src/interpreter/bytecodes.cc", | 1232 "src/interpreter/bytecodes.cc", |
1229 "src/interpreter/bytecodes.h", | 1233 "src/interpreter/bytecodes.h", |
1230 "src/interpreter/constant-array-builder.cc", | 1234 "src/interpreter/constant-array-builder.cc", |
1231 "src/interpreter/constant-array-builder.h", | 1235 "src/interpreter/constant-array-builder.h", |
1232 "src/interpreter/control-flow-builders.cc", | 1236 "src/interpreter/control-flow-builders.cc", |
1233 "src/interpreter/control-flow-builders.h", | 1237 "src/interpreter/control-flow-builders.h", |
1234 "src/interpreter/handler-table-builder.cc", | 1238 "src/interpreter/handler-table-builder.cc", |
1235 "src/interpreter/handler-table-builder.h", | 1239 "src/interpreter/handler-table-builder.h", |
1236 "src/interpreter/interpreter-assembler.cc", | 1240 "src/interpreter/interpreter-assembler.cc", |
1237 "src/interpreter/interpreter-assembler.h", | 1241 "src/interpreter/interpreter-assembler.h", |
(...skipping 976 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2214 | 2218 |
2215 configs -= [ "//build/config/compiler:chromium_code" ] | 2219 configs -= [ "//build/config/compiler:chromium_code" ] |
2216 configs += [ "//build/config/compiler:no_chromium_code" ] | 2220 configs += [ "//build/config/compiler:no_chromium_code" ] |
2217 configs += [ | 2221 configs += [ |
2218 ":internal_config", | 2222 ":internal_config", |
2219 ":libplatform_config", | 2223 ":libplatform_config", |
2220 ":features", | 2224 ":features", |
2221 ":toolchain", | 2225 ":toolchain", |
2222 ] | 2226 ] |
2223 } | 2227 } |
OLD | NEW |