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 1578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1589 "src/parsing/parse-info.h", | 1589 "src/parsing/parse-info.h", |
1590 "src/parsing/parser-base.h", | 1590 "src/parsing/parser-base.h", |
1591 "src/parsing/parser.cc", | 1591 "src/parsing/parser.cc", |
1592 "src/parsing/parser.h", | 1592 "src/parsing/parser.h", |
1593 "src/parsing/parsing.cc", | 1593 "src/parsing/parsing.cc", |
1594 "src/parsing/parsing.h", | 1594 "src/parsing/parsing.h", |
1595 "src/parsing/pattern-rewriter.cc", | 1595 "src/parsing/pattern-rewriter.cc", |
1596 "src/parsing/preparse-data-format.h", | 1596 "src/parsing/preparse-data-format.h", |
1597 "src/parsing/preparse-data.cc", | 1597 "src/parsing/preparse-data.cc", |
1598 "src/parsing/preparse-data.h", | 1598 "src/parsing/preparse-data.h", |
| 1599 "src/parsing/preparsed-scope-data.cc", |
| 1600 "src/parsing/preparsed-scope-data.h", |
1599 "src/parsing/preparser.cc", | 1601 "src/parsing/preparser.cc", |
1600 "src/parsing/preparser.h", | 1602 "src/parsing/preparser.h", |
1601 "src/parsing/rewriter.cc", | 1603 "src/parsing/rewriter.cc", |
1602 "src/parsing/rewriter.h", | 1604 "src/parsing/rewriter.h", |
1603 "src/parsing/scanner-character-streams.cc", | 1605 "src/parsing/scanner-character-streams.cc", |
1604 "src/parsing/scanner-character-streams.h", | 1606 "src/parsing/scanner-character-streams.h", |
1605 "src/parsing/scanner.cc", | 1607 "src/parsing/scanner.cc", |
1606 "src/parsing/scanner.h", | 1608 "src/parsing/scanner.h", |
1607 "src/parsing/token.cc", | 1609 "src/parsing/token.cc", |
1608 "src/parsing/token.h", | 1610 "src/parsing/token.h", |
(...skipping 1453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3062 ] | 3064 ] |
3063 | 3065 |
3064 configs = [ | 3066 configs = [ |
3065 ":external_config", | 3067 ":external_config", |
3066 ":internal_config_base", | 3068 ":internal_config_base", |
3067 ] | 3069 ] |
3068 } | 3070 } |
3069 | 3071 |
3070 v8_fuzzer("wasm_data_section_fuzzer") { | 3072 v8_fuzzer("wasm_data_section_fuzzer") { |
3071 } | 3073 } |
OLD | NEW |