| 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 1513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1524 "src/register-configuration.h", | 1524 "src/register-configuration.h", |
| 1525 "src/runtime-profiler.cc", | 1525 "src/runtime-profiler.cc", |
| 1526 "src/runtime-profiler.h", | 1526 "src/runtime-profiler.h", |
| 1527 "src/runtime/runtime-array.cc", | 1527 "src/runtime/runtime-array.cc", |
| 1528 "src/runtime/runtime-atomics.cc", | 1528 "src/runtime/runtime-atomics.cc", |
| 1529 "src/runtime/runtime-classes.cc", | 1529 "src/runtime/runtime-classes.cc", |
| 1530 "src/runtime/runtime-collections.cc", | 1530 "src/runtime/runtime-collections.cc", |
| 1531 "src/runtime/runtime-compiler.cc", | 1531 "src/runtime/runtime-compiler.cc", |
| 1532 "src/runtime/runtime-date.cc", | 1532 "src/runtime/runtime-date.cc", |
| 1533 "src/runtime/runtime-debug.cc", | 1533 "src/runtime/runtime-debug.cc", |
| 1534 "src/runtime/runtime-error.cc", |
| 1534 "src/runtime/runtime-forin.cc", | 1535 "src/runtime/runtime-forin.cc", |
| 1535 "src/runtime/runtime-function.cc", | 1536 "src/runtime/runtime-function.cc", |
| 1536 "src/runtime/runtime-futex.cc", | 1537 "src/runtime/runtime-futex.cc", |
| 1537 "src/runtime/runtime-generator.cc", | 1538 "src/runtime/runtime-generator.cc", |
| 1538 "src/runtime/runtime-i18n.cc", | 1539 "src/runtime/runtime-i18n.cc", |
| 1539 "src/runtime/runtime-internal.cc", | 1540 "src/runtime/runtime-internal.cc", |
| 1540 "src/runtime/runtime-interpreter.cc", | 1541 "src/runtime/runtime-interpreter.cc", |
| 1541 "src/runtime/runtime-literals.cc", | 1542 "src/runtime/runtime-literals.cc", |
| 1542 "src/runtime/runtime-liveedit.cc", | 1543 "src/runtime/runtime-liveedit.cc", |
| 1543 "src/runtime/runtime-maths.cc", | 1544 "src/runtime/runtime-maths.cc", |
| (...skipping 994 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2538 | 2539 |
| 2539 deps = [ | 2540 deps = [ |
| 2540 ":fuzzer_support", | 2541 ":fuzzer_support", |
| 2541 ] | 2542 ] |
| 2542 | 2543 |
| 2543 configs = [ ":internal_config" ] | 2544 configs = [ ":internal_config" ] |
| 2544 } | 2545 } |
| 2545 | 2546 |
| 2546 v8_fuzzer("wasm_asmjs_fuzzer") { | 2547 v8_fuzzer("wasm_asmjs_fuzzer") { |
| 2547 } | 2548 } |
| OLD | NEW |