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 1338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1349 "src/utils.h", | 1349 "src/utils.h", |
1350 "src/v8.cc", | 1350 "src/v8.cc", |
1351 "src/v8.h", | 1351 "src/v8.h", |
1352 "src/v8memory.h", | 1352 "src/v8memory.h", |
1353 "src/v8threads.cc", | 1353 "src/v8threads.cc", |
1354 "src/v8threads.h", | 1354 "src/v8threads.h", |
1355 "src/version.cc", | 1355 "src/version.cc", |
1356 "src/version.h", | 1356 "src/version.h", |
1357 "src/vm-state-inl.h", | 1357 "src/vm-state-inl.h", |
1358 "src/vm-state.h", | 1358 "src/vm-state.h", |
| 1359 "src/wasm/switch-logic.h", |
| 1360 "src/wasm/switch-logic.cc", |
1359 "src/wasm/asm-wasm-builder.cc", | 1361 "src/wasm/asm-wasm-builder.cc", |
1360 "src/wasm/asm-wasm-builder.h", | 1362 "src/wasm/asm-wasm-builder.h", |
1361 "src/wasm/ast-decoder.cc", | 1363 "src/wasm/ast-decoder.cc", |
1362 "src/wasm/ast-decoder.h", | 1364 "src/wasm/ast-decoder.h", |
1363 "src/wasm/decoder.h", | 1365 "src/wasm/decoder.h", |
1364 "src/wasm/encoder.cc", | 1366 "src/wasm/encoder.cc", |
1365 "src/wasm/encoder.h", | 1367 "src/wasm/encoder.h", |
1366 "src/wasm/module-decoder.cc", | 1368 "src/wasm/module-decoder.cc", |
1367 "src/wasm/module-decoder.h", | 1369 "src/wasm/module-decoder.h", |
1368 "src/wasm/wasm-external-refs.h", | 1370 "src/wasm/wasm-external-refs.h", |
(...skipping 726 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2095 | 2097 |
2096 configs -= [ "//build/config/compiler:chromium_code" ] | 2098 configs -= [ "//build/config/compiler:chromium_code" ] |
2097 configs += [ "//build/config/compiler:no_chromium_code" ] | 2099 configs += [ "//build/config/compiler:no_chromium_code" ] |
2098 configs += [ | 2100 configs += [ |
2099 ":internal_config", | 2101 ":internal_config", |
2100 ":libplatform_config", | 2102 ":libplatform_config", |
2101 ":features", | 2103 ":features", |
2102 ":toolchain", | 2104 ":toolchain", |
2103 ] | 2105 ] |
2104 } | 2106 } |
OLD | NEW |