| 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/mips.gni") | 8 import("//build/config/mips.gni") |
| 9 import("//build/config/sanitizers/sanitizers.gni") | 9 import("//build/config/sanitizers/sanitizers.gni") |
| 10 | 10 |
| (...skipping 1086 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1097 "src/deoptimizer.h", | 1097 "src/deoptimizer.h", |
| 1098 "src/disasm.h", | 1098 "src/disasm.h", |
| 1099 "src/disassembler.cc", | 1099 "src/disassembler.cc", |
| 1100 "src/disassembler.h", | 1100 "src/disassembler.h", |
| 1101 "src/diy-fp.cc", | 1101 "src/diy-fp.cc", |
| 1102 "src/diy-fp.h", | 1102 "src/diy-fp.h", |
| 1103 "src/double.h", | 1103 "src/double.h", |
| 1104 "src/dtoa.cc", | 1104 "src/dtoa.cc", |
| 1105 "src/dtoa.h", | 1105 "src/dtoa.h", |
| 1106 "src/effects.h", | 1106 "src/effects.h", |
| 1107 "src/eh-frame.cc", |
| 1108 "src/eh-frame.h", |
| 1107 "src/elements-kind.cc", | 1109 "src/elements-kind.cc", |
| 1108 "src/elements-kind.h", | 1110 "src/elements-kind.h", |
| 1109 "src/elements.cc", | 1111 "src/elements.cc", |
| 1110 "src/elements.h", | 1112 "src/elements.h", |
| 1111 "src/execution.cc", | 1113 "src/execution.cc", |
| 1112 "src/execution.h", | 1114 "src/execution.h", |
| 1113 "src/extensions/externalize-string-extension.cc", | 1115 "src/extensions/externalize-string-extension.cc", |
| 1114 "src/extensions/externalize-string-extension.h", | 1116 "src/extensions/externalize-string-extension.h", |
| 1115 "src/extensions/free-buffer-extension.cc", | 1117 "src/extensions/free-buffer-extension.cc", |
| 1116 "src/extensions/free-buffer-extension.h", | 1118 "src/extensions/free-buffer-extension.h", |
| (...skipping 1135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2252 | 2254 |
| 2253 deps = [ | 2255 deps = [ |
| 2254 ":fuzzer_support", | 2256 ":fuzzer_support", |
| 2255 ] | 2257 ] |
| 2256 | 2258 |
| 2257 configs = [ ":internal_config" ] | 2259 configs = [ ":internal_config" ] |
| 2258 } | 2260 } |
| 2259 | 2261 |
| 2260 v8_fuzzer("wasm_asmjs_fuzzer") { | 2262 v8_fuzzer("wasm_asmjs_fuzzer") { |
| 2261 } | 2263 } |
| OLD | NEW |