Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(365)

Side by Side Diff: BUILD.gn

Issue 2166333002: [parser] Refactor AstTraversalVisitor (BROKEN) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@nickie-2169833002-ast-vis
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/ast/ast.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 819 matching lines...) Expand 10 before | Expand all | Expand 10 after
830 "src/asmjs/asm-types.cc", 830 "src/asmjs/asm-types.cc",
831 "src/asmjs/asm-types.h", 831 "src/asmjs/asm-types.h",
832 "src/asmjs/asm-wasm-builder.cc", 832 "src/asmjs/asm-wasm-builder.cc",
833 "src/asmjs/asm-wasm-builder.h", 833 "src/asmjs/asm-wasm-builder.h",
834 "src/assembler.cc", 834 "src/assembler.cc",
835 "src/assembler.h", 835 "src/assembler.h",
836 "src/assert-scope.cc", 836 "src/assert-scope.cc",
837 "src/assert-scope.h", 837 "src/assert-scope.h",
838 "src/ast/ast-expression-rewriter.cc", 838 "src/ast/ast-expression-rewriter.cc",
839 "src/ast/ast-expression-rewriter.h", 839 "src/ast/ast-expression-rewriter.h",
840 "src/ast/ast-expression-visitor.cc",
841 "src/ast/ast-expression-visitor.h",
842 "src/ast/ast-literal-reindexer.cc", 840 "src/ast/ast-literal-reindexer.cc",
843 "src/ast/ast-literal-reindexer.h", 841 "src/ast/ast-literal-reindexer.h",
844 "src/ast/ast-numbering.cc", 842 "src/ast/ast-numbering.cc",
845 "src/ast/ast-numbering.h", 843 "src/ast/ast-numbering.h",
846 "src/ast/ast-type-bounds.h", 844 "src/ast/ast-type-bounds.h",
847 "src/ast/ast-value-factory.cc", 845 "src/ast/ast-value-factory.cc",
848 "src/ast/ast-value-factory.h", 846 "src/ast/ast-value-factory.h",
849 "src/ast/ast.cc", 847 "src/ast/ast.cc",
850 "src/ast/ast.h", 848 "src/ast/ast.h",
851 "src/ast/modules.cc", 849 "src/ast/modules.cc",
(...skipping 1632 matching lines...) Expand 10 before | Expand all | Expand 10 after
2484 2482
2485 deps = [ 2483 deps = [
2486 ":fuzzer_support", 2484 ":fuzzer_support",
2487 ] 2485 ]
2488 2486
2489 configs = [ ":internal_config" ] 2487 configs = [ ":internal_config" ]
2490 } 2488 }
2491 2489
2492 v8_fuzzer("wasm_asmjs_fuzzer") { 2490 v8_fuzzer("wasm_asmjs_fuzzer") {
2493 } 2491 }
OLDNEW
« no previous file with comments | « no previous file | src/ast/ast.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698