| 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 1353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1364 "src/utils.h", | 1364 "src/utils.h", |
| 1365 "src/v8.cc", | 1365 "src/v8.cc", |
| 1366 "src/v8.h", | 1366 "src/v8.h", |
| 1367 "src/v8memory.h", | 1367 "src/v8memory.h", |
| 1368 "src/v8threads.cc", | 1368 "src/v8threads.cc", |
| 1369 "src/v8threads.h", | 1369 "src/v8threads.h", |
| 1370 "src/version.cc", | 1370 "src/version.cc", |
| 1371 "src/version.h", | 1371 "src/version.h", |
| 1372 "src/vm-state-inl.h", | 1372 "src/vm-state-inl.h", |
| 1373 "src/vm-state.h", | 1373 "src/vm-state.h", |
| 1374 "src/wasm/switch-logic.h", |
| 1375 "src/wasm/switch-logic.cc", |
| 1374 "src/wasm/asm-wasm-builder.cc", | 1376 "src/wasm/asm-wasm-builder.cc", |
| 1375 "src/wasm/asm-wasm-builder.h", | 1377 "src/wasm/asm-wasm-builder.h", |
| 1376 "src/wasm/ast-decoder.cc", | 1378 "src/wasm/ast-decoder.cc", |
| 1377 "src/wasm/ast-decoder.h", | 1379 "src/wasm/ast-decoder.h", |
| 1378 "src/wasm/decoder.h", | 1380 "src/wasm/decoder.h", |
| 1379 "src/wasm/encoder.cc", | 1381 "src/wasm/encoder.cc", |
| 1380 "src/wasm/encoder.h", | 1382 "src/wasm/encoder.h", |
| 1381 "src/wasm/module-decoder.cc", | 1383 "src/wasm/module-decoder.cc", |
| 1382 "src/wasm/module-decoder.h", | 1384 "src/wasm/module-decoder.h", |
| 1383 "src/wasm/wasm-external-refs.cc", | 1385 "src/wasm/wasm-external-refs.cc", |
| (...skipping 731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2115 | 2117 |
| 2116 configs -= [ "//build/config/compiler:chromium_code" ] | 2118 configs -= [ "//build/config/compiler:chromium_code" ] |
| 2117 configs += [ "//build/config/compiler:no_chromium_code" ] | 2119 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 2118 configs += [ | 2120 configs += [ |
| 2119 ":internal_config", | 2121 ":internal_config", |
| 2120 ":libplatform_config", | 2122 ":libplatform_config", |
| 2121 ":features", | 2123 ":features", |
| 2122 ":toolchain", | 2124 ":toolchain", |
| 2123 ] | 2125 ] |
| 2124 } | 2126 } |
| OLD | NEW |