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 843 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
854 "src/ast/ast-literal-reindexer.cc", | 854 "src/ast/ast-literal-reindexer.cc", |
855 "src/ast/ast-literal-reindexer.h", | 855 "src/ast/ast-literal-reindexer.h", |
856 "src/ast/ast-numbering.cc", | 856 "src/ast/ast-numbering.cc", |
857 "src/ast/ast-numbering.h", | 857 "src/ast/ast-numbering.h", |
858 "src/ast/ast-traversal-visitor.h", | 858 "src/ast/ast-traversal-visitor.h", |
859 "src/ast/ast-type-bounds.h", | 859 "src/ast/ast-type-bounds.h", |
860 "src/ast/ast-value-factory.cc", | 860 "src/ast/ast-value-factory.cc", |
861 "src/ast/ast-value-factory.h", | 861 "src/ast/ast-value-factory.h", |
862 "src/ast/ast.cc", | 862 "src/ast/ast.cc", |
863 "src/ast/ast.h", | 863 "src/ast/ast.h", |
| 864 "src/ast/context-slot-cache.cc", |
| 865 "src/ast/context-slot-cache.h", |
864 "src/ast/modules.cc", | 866 "src/ast/modules.cc", |
865 "src/ast/modules.h", | 867 "src/ast/modules.h", |
866 "src/ast/prettyprinter.cc", | 868 "src/ast/prettyprinter.cc", |
867 "src/ast/prettyprinter.h", | 869 "src/ast/prettyprinter.h", |
868 "src/ast/scopeinfo.cc", | 870 "src/ast/scopeinfo.cc", |
869 "src/ast/scopes.cc", | 871 "src/ast/scopes.cc", |
870 "src/ast/scopes.h", | 872 "src/ast/scopes.h", |
871 "src/ast/variables.cc", | 873 "src/ast/variables.cc", |
872 "src/ast/variables.h", | 874 "src/ast/variables.h", |
873 "src/background-parsing-task.cc", | 875 "src/background-parsing-task.cc", |
(...skipping 1701 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2575 | 2577 |
2576 deps = [ | 2578 deps = [ |
2577 ":fuzzer_support", | 2579 ":fuzzer_support", |
2578 ] | 2580 ] |
2579 | 2581 |
2580 configs = [ ":internal_config" ] | 2582 configs = [ ":internal_config" ] |
2581 } | 2583 } |
2582 | 2584 |
2583 v8_fuzzer("wasm_asmjs_fuzzer") { | 2585 v8_fuzzer("wasm_asmjs_fuzzer") { |
2584 } | 2586 } |
OLD | NEW |