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 1343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1354 "src/vm-state.h", | 1354 "src/vm-state.h", |
1355 "src/wasm/asm-wasm-builder.cc", | 1355 "src/wasm/asm-wasm-builder.cc", |
1356 "src/wasm/asm-wasm-builder.h", | 1356 "src/wasm/asm-wasm-builder.h", |
1357 "src/wasm/ast-decoder.cc", | 1357 "src/wasm/ast-decoder.cc", |
1358 "src/wasm/ast-decoder.h", | 1358 "src/wasm/ast-decoder.h", |
1359 "src/wasm/decoder.h", | 1359 "src/wasm/decoder.h", |
1360 "src/wasm/encoder.cc", | 1360 "src/wasm/encoder.cc", |
1361 "src/wasm/encoder.h", | 1361 "src/wasm/encoder.h", |
1362 "src/wasm/module-decoder.cc", | 1362 "src/wasm/module-decoder.cc", |
1363 "src/wasm/module-decoder.h", | 1363 "src/wasm/module-decoder.h", |
| 1364 "src/wasm/wasm-external-refs.h", |
1364 "src/wasm/wasm-js.cc", | 1365 "src/wasm/wasm-js.cc", |
1365 "src/wasm/wasm-js.h", | 1366 "src/wasm/wasm-js.h", |
1366 "src/wasm/wasm-macro-gen.h", | 1367 "src/wasm/wasm-macro-gen.h", |
1367 "src/wasm/wasm-module.cc", | 1368 "src/wasm/wasm-module.cc", |
1368 "src/wasm/wasm-module.h", | 1369 "src/wasm/wasm-module.h", |
1369 "src/wasm/wasm-opcodes.cc", | 1370 "src/wasm/wasm-opcodes.cc", |
1370 "src/wasm/wasm-opcodes.h", | 1371 "src/wasm/wasm-opcodes.h", |
1371 "src/wasm/wasm-result.cc", | 1372 "src/wasm/wasm-result.cc", |
1372 "src/wasm/wasm-result.h", | 1373 "src/wasm/wasm-result.h", |
1373 "src/zone.cc", | 1374 "src/zone.cc", |
(...skipping 703 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2077 | 2078 |
2078 configs -= [ "//build/config/compiler:chromium_code" ] | 2079 configs -= [ "//build/config/compiler:chromium_code" ] |
2079 configs += [ "//build/config/compiler:no_chromium_code" ] | 2080 configs += [ "//build/config/compiler:no_chromium_code" ] |
2080 configs += [ | 2081 configs += [ |
2081 ":internal_config", | 2082 ":internal_config", |
2082 ":libplatform_config", | 2083 ":libplatform_config", |
2083 ":features", | 2084 ":features", |
2084 ":toolchain", | 2085 ":toolchain", |
2085 ] | 2086 ] |
2086 } | 2087 } |
OLD | NEW |