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 1422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1433 "src/ic/keyed-store-generic.cc", | 1433 "src/ic/keyed-store-generic.cc", |
1434 "src/ic/keyed-store-generic.h", | 1434 "src/ic/keyed-store-generic.h", |
1435 "src/ic/stub-cache.cc", | 1435 "src/ic/stub-cache.cc", |
1436 "src/ic/stub-cache.h", | 1436 "src/ic/stub-cache.h", |
1437 "src/icu_util.cc", | 1437 "src/icu_util.cc", |
1438 "src/icu_util.h", | 1438 "src/icu_util.h", |
1439 "src/identity-map.cc", | 1439 "src/identity-map.cc", |
1440 "src/identity-map.h", | 1440 "src/identity-map.h", |
1441 "src/interface-descriptors.cc", | 1441 "src/interface-descriptors.cc", |
1442 "src/interface-descriptors.h", | 1442 "src/interface-descriptors.h", |
| 1443 "src/interpreter/bytecode-array-accessor.cc", |
| 1444 "src/interpreter/bytecode-array-accessor.h", |
1443 "src/interpreter/bytecode-array-builder.cc", | 1445 "src/interpreter/bytecode-array-builder.cc", |
1444 "src/interpreter/bytecode-array-builder.h", | 1446 "src/interpreter/bytecode-array-builder.h", |
1445 "src/interpreter/bytecode-array-iterator.cc", | 1447 "src/interpreter/bytecode-array-iterator.cc", |
1446 "src/interpreter/bytecode-array-iterator.h", | 1448 "src/interpreter/bytecode-array-iterator.h", |
1447 "src/interpreter/bytecode-array-writer.cc", | 1449 "src/interpreter/bytecode-array-writer.cc", |
1448 "src/interpreter/bytecode-array-writer.h", | 1450 "src/interpreter/bytecode-array-writer.h", |
1449 "src/interpreter/bytecode-dead-code-optimizer.cc", | 1451 "src/interpreter/bytecode-dead-code-optimizer.cc", |
1450 "src/interpreter/bytecode-dead-code-optimizer.h", | 1452 "src/interpreter/bytecode-dead-code-optimizer.h", |
1451 "src/interpreter/bytecode-decoder.cc", | 1453 "src/interpreter/bytecode-decoder.cc", |
1452 "src/interpreter/bytecode-decoder.h", | 1454 "src/interpreter/bytecode-decoder.h", |
(...skipping 1548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3001 ] | 3003 ] |
3002 | 3004 |
3003 configs = [ | 3005 configs = [ |
3004 ":external_config", | 3006 ":external_config", |
3005 ":internal_config_base", | 3007 ":internal_config_base", |
3006 ] | 3008 ] |
3007 } | 3009 } |
3008 | 3010 |
3009 v8_fuzzer("wasm_data_section_fuzzer") { | 3011 v8_fuzzer("wasm_data_section_fuzzer") { |
3010 } | 3012 } |
OLD | NEW |