| 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 838 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 849 "src/ast/ast-literal-reindexer.cc", | 849 "src/ast/ast-literal-reindexer.cc", |
| 850 "src/ast/ast-literal-reindexer.h", | 850 "src/ast/ast-literal-reindexer.h", |
| 851 "src/ast/ast-numbering.cc", | 851 "src/ast/ast-numbering.cc", |
| 852 "src/ast/ast-numbering.h", | 852 "src/ast/ast-numbering.h", |
| 853 "src/ast/ast-traversal-visitor.h", | 853 "src/ast/ast-traversal-visitor.h", |
| 854 "src/ast/ast-type-bounds.h", | 854 "src/ast/ast-type-bounds.h", |
| 855 "src/ast/ast-value-factory.cc", | 855 "src/ast/ast-value-factory.cc", |
| 856 "src/ast/ast-value-factory.h", | 856 "src/ast/ast-value-factory.h", |
| 857 "src/ast/ast.cc", | 857 "src/ast/ast.cc", |
| 858 "src/ast/ast.h", | 858 "src/ast/ast.h", |
| 859 "src/ast/context-slot-cache.cc", |
| 860 "src/ast/context-slot-cache.h", |
| 859 "src/ast/modules.cc", | 861 "src/ast/modules.cc", |
| 860 "src/ast/modules.h", | 862 "src/ast/modules.h", |
| 861 "src/ast/prettyprinter.cc", | 863 "src/ast/prettyprinter.cc", |
| 862 "src/ast/prettyprinter.h", | 864 "src/ast/prettyprinter.h", |
| 863 "src/ast/scopeinfo.cc", | 865 "src/ast/scopeinfo.cc", |
| 864 "src/ast/scopeinfo.h", | 866 "src/ast/scopeinfo.h", |
| 865 "src/ast/scopes.cc", | 867 "src/ast/scopes.cc", |
| 866 "src/ast/scopes.h", | 868 "src/ast/scopes.h", |
| 867 "src/ast/variables.cc", | 869 "src/ast/variables.cc", |
| 868 "src/ast/variables.h", | 870 "src/ast/variables.h", |
| (...skipping 1660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2529 | 2531 |
| 2530 deps = [ | 2532 deps = [ |
| 2531 ":fuzzer_support", | 2533 ":fuzzer_support", |
| 2532 ] | 2534 ] |
| 2533 | 2535 |
| 2534 configs = [ ":internal_config" ] | 2536 configs = [ ":internal_config" ] |
| 2535 } | 2537 } |
| 2536 | 2538 |
| 2537 v8_fuzzer("wasm_asmjs_fuzzer") { | 2539 v8_fuzzer("wasm_asmjs_fuzzer") { |
| 2538 } | 2540 } |
| OLD | NEW |