| 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/dcheck_always_on.gni") | 7 import("//build/config/dcheck_always_on.gni") |
| 8 import("//build/config/host_byteorder.gni") | 8 import("//build/config/host_byteorder.gni") |
| 9 import("//build/config/mips.gni") | 9 import("//build/config/mips.gni") |
| 10 import("//build/config/sanitizers/sanitizers.gni") | 10 import("//build/config/sanitizers/sanitizers.gni") |
| (...skipping 2179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2190 "src/arm64/instructions-arm64.h", | 2190 "src/arm64/instructions-arm64.h", |
| 2191 "src/arm64/instrument-arm64.cc", | 2191 "src/arm64/instrument-arm64.cc", |
| 2192 "src/arm64/instrument-arm64.h", | 2192 "src/arm64/instrument-arm64.h", |
| 2193 "src/arm64/interface-descriptors-arm64.cc", | 2193 "src/arm64/interface-descriptors-arm64.cc", |
| 2194 "src/arm64/interface-descriptors-arm64.h", | 2194 "src/arm64/interface-descriptors-arm64.h", |
| 2195 "src/arm64/macro-assembler-arm64-inl.h", | 2195 "src/arm64/macro-assembler-arm64-inl.h", |
| 2196 "src/arm64/macro-assembler-arm64.cc", | 2196 "src/arm64/macro-assembler-arm64.cc", |
| 2197 "src/arm64/macro-assembler-arm64.h", | 2197 "src/arm64/macro-assembler-arm64.h", |
| 2198 "src/arm64/simulator-arm64.cc", | 2198 "src/arm64/simulator-arm64.cc", |
| 2199 "src/arm64/simulator-arm64.h", | 2199 "src/arm64/simulator-arm64.h", |
| 2200 "src/arm64/simulator-logic-arm64.cc", |
| 2200 "src/arm64/utils-arm64.cc", | 2201 "src/arm64/utils-arm64.cc", |
| 2201 "src/arm64/utils-arm64.h", | 2202 "src/arm64/utils-arm64.h", |
| 2202 "src/compiler/arm64/code-generator-arm64.cc", | 2203 "src/compiler/arm64/code-generator-arm64.cc", |
| 2203 "src/compiler/arm64/instruction-codes-arm64.h", | 2204 "src/compiler/arm64/instruction-codes-arm64.h", |
| 2204 "src/compiler/arm64/instruction-scheduler-arm64.cc", | 2205 "src/compiler/arm64/instruction-scheduler-arm64.cc", |
| 2205 "src/compiler/arm64/instruction-selector-arm64.cc", | 2206 "src/compiler/arm64/instruction-selector-arm64.cc", |
| 2206 "src/compiler/arm64/unwinding-info-writer-arm64.cc", | 2207 "src/compiler/arm64/unwinding-info-writer-arm64.cc", |
| 2207 "src/compiler/arm64/unwinding-info-writer-arm64.h", | 2208 "src/compiler/arm64/unwinding-info-writer-arm64.h", |
| 2208 "src/crankshaft/arm64/delayed-masm-arm64-inl.h", | 2209 "src/crankshaft/arm64/delayed-masm-arm64-inl.h", |
| 2209 "src/crankshaft/arm64/delayed-masm-arm64.cc", | 2210 "src/crankshaft/arm64/delayed-masm-arm64.cc", |
| (...skipping 1094 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3304 ] | 3305 ] |
| 3305 | 3306 |
| 3306 configs = [ | 3307 configs = [ |
| 3307 ":external_config", | 3308 ":external_config", |
| 3308 ":internal_config_base", | 3309 ":internal_config_base", |
| 3309 ] | 3310 ] |
| 3310 } | 3311 } |
| 3311 | 3312 |
| 3312 v8_fuzzer("wasm_compile_fuzzer") { | 3313 v8_fuzzer("wasm_compile_fuzzer") { |
| 3313 } | 3314 } |
| OLD | NEW |