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

Side by Side Diff: BUILD.gn

Issue 2169833002: [parser] Refactor AstTraversalVisitor (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase 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 820 matching lines...) Expand 10 before | Expand all | Expand 10 after
831 "src/asmjs/asm-types.cc", 831 "src/asmjs/asm-types.cc",
832 "src/asmjs/asm-types.h", 832 "src/asmjs/asm-types.h",
833 "src/asmjs/asm-wasm-builder.cc", 833 "src/asmjs/asm-wasm-builder.cc",
834 "src/asmjs/asm-wasm-builder.h", 834 "src/asmjs/asm-wasm-builder.h",
835 "src/assembler.cc", 835 "src/assembler.cc",
836 "src/assembler.h", 836 "src/assembler.h",
837 "src/assert-scope.cc", 837 "src/assert-scope.cc",
838 "src/assert-scope.h", 838 "src/assert-scope.h",
839 "src/ast/ast-expression-rewriter.cc", 839 "src/ast/ast-expression-rewriter.cc",
840 "src/ast/ast-expression-rewriter.h", 840 "src/ast/ast-expression-rewriter.h",
841 "src/ast/ast-expression-visitor.cc",
842 "src/ast/ast-expression-visitor.h",
843 "src/ast/ast-literal-reindexer.cc", 841 "src/ast/ast-literal-reindexer.cc",
844 "src/ast/ast-literal-reindexer.h", 842 "src/ast/ast-literal-reindexer.h",
845 "src/ast/ast-numbering.cc", 843 "src/ast/ast-numbering.cc",
846 "src/ast/ast-numbering.h", 844 "src/ast/ast-numbering.h",
845 "src/ast/ast-traversal-visitor.h",
847 "src/ast/ast-type-bounds.h", 846 "src/ast/ast-type-bounds.h",
848 "src/ast/ast-value-factory.cc", 847 "src/ast/ast-value-factory.cc",
849 "src/ast/ast-value-factory.h", 848 "src/ast/ast-value-factory.h",
850 "src/ast/ast.cc", 849 "src/ast/ast.cc",
851 "src/ast/ast.h", 850 "src/ast/ast.h",
852 "src/ast/modules.cc", 851 "src/ast/modules.cc",
853 "src/ast/modules.h", 852 "src/ast/modules.h",
854 "src/ast/prettyprinter.cc", 853 "src/ast/prettyprinter.cc",
855 "src/ast/prettyprinter.h", 854 "src/ast/prettyprinter.h",
856 "src/ast/scopeinfo.cc", 855 "src/ast/scopeinfo.cc",
(...skipping 1649 matching lines...) Expand 10 before | Expand all | Expand 10 after
2506 2505
2507 deps = [ 2506 deps = [
2508 ":fuzzer_support", 2507 ":fuzzer_support",
2509 ] 2508 ]
2510 2509
2511 configs = [ ":internal_config" ] 2510 configs = [ ":internal_config" ]
2512 } 2511 }
2513 2512
2514 v8_fuzzer("wasm_asmjs_fuzzer") { 2513 v8_fuzzer("wasm_asmjs_fuzzer") {
2515 } 2514 }
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