| 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/mips.gni") | 7 import("//build/config/mips.gni") |
| 8 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
| 9 | 9 |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 745 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 756 "src/assert-scope.cc", | 756 "src/assert-scope.cc", |
| 757 "src/assert-scope.h", | 757 "src/assert-scope.h", |
| 758 "src/ast/ast-expression-rewriter.cc", | 758 "src/ast/ast-expression-rewriter.cc", |
| 759 "src/ast/ast-expression-rewriter.h", | 759 "src/ast/ast-expression-rewriter.h", |
| 760 "src/ast/ast-expression-visitor.cc", | 760 "src/ast/ast-expression-visitor.cc", |
| 761 "src/ast/ast-expression-visitor.h", | 761 "src/ast/ast-expression-visitor.h", |
| 762 "src/ast/ast-literal-reindexer.cc", | 762 "src/ast/ast-literal-reindexer.cc", |
| 763 "src/ast/ast-literal-reindexer.h", | 763 "src/ast/ast-literal-reindexer.h", |
| 764 "src/ast/ast-numbering.cc", | 764 "src/ast/ast-numbering.cc", |
| 765 "src/ast/ast-numbering.h", | 765 "src/ast/ast-numbering.h", |
| 766 "src/ast/ast-type-bounds.h", |
| 766 "src/ast/ast-value-factory.cc", | 767 "src/ast/ast-value-factory.cc", |
| 767 "src/ast/ast-value-factory.h", | 768 "src/ast/ast-value-factory.h", |
| 768 "src/ast/ast.cc", | 769 "src/ast/ast.cc", |
| 769 "src/ast/ast.h", | 770 "src/ast/ast.h", |
| 770 "src/ast/modules.cc", | 771 "src/ast/modules.cc", |
| 771 "src/ast/modules.h", | 772 "src/ast/modules.h", |
| 772 "src/ast/prettyprinter.cc", | 773 "src/ast/prettyprinter.cc", |
| 773 "src/ast/prettyprinter.h", | 774 "src/ast/prettyprinter.h", |
| 774 "src/ast/scopeinfo.cc", | 775 "src/ast/scopeinfo.cc", |
| 775 "src/ast/scopeinfo.h", | 776 "src/ast/scopeinfo.h", |
| (...skipping 1420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2196 ] | 2197 ] |
| 2197 | 2198 |
| 2198 deps = [ | 2199 deps = [ |
| 2199 ":fuzzer_support", | 2200 ":fuzzer_support", |
| 2200 ] | 2201 ] |
| 2201 | 2202 |
| 2202 configs = [ | 2203 configs = [ |
| 2203 ":internal_config", | 2204 ":internal_config", |
| 2204 ] | 2205 ] |
| 2205 } | 2206 } |
| OLD | NEW |