| 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 930 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 941 "src/ast/ast.cc", | 941 "src/ast/ast.cc", |
| 942 "src/ast/ast.h", | 942 "src/ast/ast.h", |
| 943 "src/ast/compile-time-value.cc", | 943 "src/ast/compile-time-value.cc", |
| 944 "src/ast/compile-time-value.h", | 944 "src/ast/compile-time-value.h", |
| 945 "src/ast/context-slot-cache.cc", | 945 "src/ast/context-slot-cache.cc", |
| 946 "src/ast/context-slot-cache.h", | 946 "src/ast/context-slot-cache.h", |
| 947 "src/ast/modules.cc", | 947 "src/ast/modules.cc", |
| 948 "src/ast/modules.h", | 948 "src/ast/modules.h", |
| 949 "src/ast/prettyprinter.cc", | 949 "src/ast/prettyprinter.cc", |
| 950 "src/ast/prettyprinter.h", | 950 "src/ast/prettyprinter.h", |
| 951 "src/ast/scopeinfo.cc", | |
| 952 "src/ast/scopes.cc", | 951 "src/ast/scopes.cc", |
| 953 "src/ast/scopes.h", | 952 "src/ast/scopes.h", |
| 954 "src/ast/variables.cc", | 953 "src/ast/variables.cc", |
| 955 "src/ast/variables.h", | 954 "src/ast/variables.h", |
| 956 "src/background-parsing-task.cc", | 955 "src/background-parsing-task.cc", |
| 957 "src/background-parsing-task.h", | 956 "src/background-parsing-task.h", |
| 958 "src/bailout-reason.cc", | 957 "src/bailout-reason.cc", |
| 959 "src/bailout-reason.h", | 958 "src/bailout-reason.h", |
| 960 "src/basic-block-profiler.cc", | 959 "src/basic-block-profiler.cc", |
| 961 "src/basic-block-profiler.h", | 960 "src/basic-block-profiler.h", |
| (...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1563 "src/objects-body-descriptors-inl.h", | 1562 "src/objects-body-descriptors-inl.h", |
| 1564 "src/objects-body-descriptors.h", | 1563 "src/objects-body-descriptors.h", |
| 1565 "src/objects-debug.cc", | 1564 "src/objects-debug.cc", |
| 1566 "src/objects-inl.h", | 1565 "src/objects-inl.h", |
| 1567 "src/objects-printer.cc", | 1566 "src/objects-printer.cc", |
| 1568 "src/objects.cc", | 1567 "src/objects.cc", |
| 1569 "src/objects.h", | 1568 "src/objects.h", |
| 1570 "src/objects/module-info.h", | 1569 "src/objects/module-info.h", |
| 1571 "src/objects/object-macros-undef.h", | 1570 "src/objects/object-macros-undef.h", |
| 1572 "src/objects/object-macros.h", | 1571 "src/objects/object-macros.h", |
| 1572 "src/objects/scope-info.cc", |
| 1573 "src/objects/scope-info.h", | 1573 "src/objects/scope-info.h", |
| 1574 "src/ostreams.cc", | 1574 "src/ostreams.cc", |
| 1575 "src/ostreams.h", | 1575 "src/ostreams.h", |
| 1576 "src/parsing/duplicate-finder.cc", | 1576 "src/parsing/duplicate-finder.cc", |
| 1577 "src/parsing/duplicate-finder.h", | 1577 "src/parsing/duplicate-finder.h", |
| 1578 "src/parsing/expression-classifier.h", | 1578 "src/parsing/expression-classifier.h", |
| 1579 "src/parsing/func-name-inferrer.cc", | 1579 "src/parsing/func-name-inferrer.cc", |
| 1580 "src/parsing/func-name-inferrer.h", | 1580 "src/parsing/func-name-inferrer.h", |
| 1581 "src/parsing/parameter-initializer-rewriter.cc", | 1581 "src/parsing/parameter-initializer-rewriter.cc", |
| 1582 "src/parsing/parameter-initializer-rewriter.h", | 1582 "src/parsing/parameter-initializer-rewriter.h", |
| (...skipping 1476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3059 ] | 3059 ] |
| 3060 | 3060 |
| 3061 configs = [ | 3061 configs = [ |
| 3062 ":external_config", | 3062 ":external_config", |
| 3063 ":internal_config_base", | 3063 ":internal_config_base", |
| 3064 ] | 3064 ] |
| 3065 } | 3065 } |
| 3066 | 3066 |
| 3067 v8_fuzzer("wasm_data_section_fuzzer") { | 3067 v8_fuzzer("wasm_data_section_fuzzer") { |
| 3068 } | 3068 } |
| OLD | NEW |