| 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/host_byteorder.gni") | 8 import("//build/config/host_byteorder.gni") |
| 9 import("//build/config/mips.gni") | 9 import("//build/config/mips.gni") |
| 10 import("//build/config/sanitizers/sanitizers.gni") | 10 import("//build/config/sanitizers/sanitizers.gni") |
| (...skipping 1380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1391 "src/compiler/operator-properties.cc", | 1391 "src/compiler/operator-properties.cc", |
| 1392 "src/compiler/operator-properties.h", | 1392 "src/compiler/operator-properties.h", |
| 1393 "src/compiler/operator.cc", | 1393 "src/compiler/operator.cc", |
| 1394 "src/compiler/operator.h", | 1394 "src/compiler/operator.h", |
| 1395 "src/compiler/osr.cc", | 1395 "src/compiler/osr.cc", |
| 1396 "src/compiler/osr.h", | 1396 "src/compiler/osr.h", |
| 1397 "src/compiler/pipeline-statistics.cc", | 1397 "src/compiler/pipeline-statistics.cc", |
| 1398 "src/compiler/pipeline-statistics.h", | 1398 "src/compiler/pipeline-statistics.h", |
| 1399 "src/compiler/pipeline.cc", | 1399 "src/compiler/pipeline.cc", |
| 1400 "src/compiler/pipeline.h", | 1400 "src/compiler/pipeline.h", |
| 1401 "src/compiler/property-access-builder.cc", |
| 1402 "src/compiler/property-access-builder.h", |
| 1401 "src/compiler/raw-machine-assembler.cc", | 1403 "src/compiler/raw-machine-assembler.cc", |
| 1402 "src/compiler/raw-machine-assembler.h", | 1404 "src/compiler/raw-machine-assembler.h", |
| 1403 "src/compiler/redundancy-elimination.cc", | 1405 "src/compiler/redundancy-elimination.cc", |
| 1404 "src/compiler/redundancy-elimination.h", | 1406 "src/compiler/redundancy-elimination.h", |
| 1405 "src/compiler/register-allocator-verifier.cc", | 1407 "src/compiler/register-allocator-verifier.cc", |
| 1406 "src/compiler/register-allocator-verifier.h", | 1408 "src/compiler/register-allocator-verifier.h", |
| 1407 "src/compiler/register-allocator.cc", | 1409 "src/compiler/register-allocator.cc", |
| 1408 "src/compiler/register-allocator.h", | 1410 "src/compiler/register-allocator.h", |
| 1409 "src/compiler/representation-change.cc", | 1411 "src/compiler/representation-change.cc", |
| 1410 "src/compiler/representation-change.h", | 1412 "src/compiler/representation-change.h", |
| (...skipping 1953 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3364 ] | 3366 ] |
| 3365 | 3367 |
| 3366 configs = [ | 3368 configs = [ |
| 3367 ":external_config", | 3369 ":external_config", |
| 3368 ":internal_config_base", | 3370 ":internal_config_base", |
| 3369 ] | 3371 ] |
| 3370 } | 3372 } |
| 3371 | 3373 |
| 3372 v8_fuzzer("wasm_compile_fuzzer") { | 3374 v8_fuzzer("wasm_compile_fuzzer") { |
| 3373 } | 3375 } |
| OLD | NEW |