| 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 1430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1441 "src/types.h", | 1441 "src/types.h", |
| 1442 "src/typing-asm.cc", | 1442 "src/typing-asm.cc", |
| 1443 "src/typing-asm.h", | 1443 "src/typing-asm.h", |
| 1444 "src/unicode-cache-inl.h", | 1444 "src/unicode-cache-inl.h", |
| 1445 "src/unicode-cache.h", | 1445 "src/unicode-cache.h", |
| 1446 "src/unicode-decoder.cc", | 1446 "src/unicode-decoder.cc", |
| 1447 "src/unicode-decoder.h", | 1447 "src/unicode-decoder.h", |
| 1448 "src/unicode-inl.h", | 1448 "src/unicode-inl.h", |
| 1449 "src/unicode.cc", | 1449 "src/unicode.cc", |
| 1450 "src/unicode.h", | 1450 "src/unicode.h", |
| 1451 "src/unwinding-info.cc", |
| 1452 "src/unwinding-info.h", |
| 1451 "src/uri.cc", | 1453 "src/uri.cc", |
| 1452 "src/uri.h", | 1454 "src/uri.h", |
| 1453 "src/utils-inl.h", | 1455 "src/utils-inl.h", |
| 1454 "src/utils.cc", | 1456 "src/utils.cc", |
| 1455 "src/utils.h", | 1457 "src/utils.h", |
| 1456 "src/v8.cc", | 1458 "src/v8.cc", |
| 1457 "src/v8.h", | 1459 "src/v8.h", |
| 1458 "src/v8memory.h", | 1460 "src/v8memory.h", |
| 1459 "src/v8threads.cc", | 1461 "src/v8threads.cc", |
| 1460 "src/v8threads.h", | 1462 "src/v8threads.h", |
| (...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2243 | 2245 |
| 2244 deps = [ | 2246 deps = [ |
| 2245 ":fuzzer_support", | 2247 ":fuzzer_support", |
| 2246 ] | 2248 ] |
| 2247 | 2249 |
| 2248 configs = [ ":internal_config" ] | 2250 configs = [ ":internal_config" ] |
| 2249 } | 2251 } |
| 2250 | 2252 |
| 2251 v8_fuzzer("wasm_asmjs_fuzzer") { | 2253 v8_fuzzer("wasm_asmjs_fuzzer") { |
| 2252 } | 2254 } |
| OLD | NEW |