| 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 978 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 989 "src/compiler/register-allocator.cc", | 989 "src/compiler/register-allocator.cc", |
| 990 "src/compiler/register-allocator.h", | 990 "src/compiler/register-allocator.h", |
| 991 "src/compiler/representation-change.cc", | 991 "src/compiler/representation-change.cc", |
| 992 "src/compiler/representation-change.h", | 992 "src/compiler/representation-change.h", |
| 993 "src/compiler/schedule.cc", | 993 "src/compiler/schedule.cc", |
| 994 "src/compiler/schedule.h", | 994 "src/compiler/schedule.h", |
| 995 "src/compiler/scheduler.cc", | 995 "src/compiler/scheduler.cc", |
| 996 "src/compiler/scheduler.h", | 996 "src/compiler/scheduler.h", |
| 997 "src/compiler/select-lowering.cc", | 997 "src/compiler/select-lowering.cc", |
| 998 "src/compiler/select-lowering.h", | 998 "src/compiler/select-lowering.h", |
| 999 "src/compiler/simd-lowering.cc", |
| 1000 "src/compiler/simd-lowering.h", |
| 999 "src/compiler/simplified-lowering.cc", | 1001 "src/compiler/simplified-lowering.cc", |
| 1000 "src/compiler/simplified-lowering.h", | 1002 "src/compiler/simplified-lowering.h", |
| 1001 "src/compiler/simplified-operator-reducer.cc", | 1003 "src/compiler/simplified-operator-reducer.cc", |
| 1002 "src/compiler/simplified-operator-reducer.h", | 1004 "src/compiler/simplified-operator-reducer.h", |
| 1003 "src/compiler/simplified-operator.cc", | 1005 "src/compiler/simplified-operator.cc", |
| 1004 "src/compiler/simplified-operator.h", | 1006 "src/compiler/simplified-operator.h", |
| 1005 "src/compiler/source-position.cc", | 1007 "src/compiler/source-position.cc", |
| 1006 "src/compiler/source-position.h", | 1008 "src/compiler/source-position.h", |
| 1007 "src/compiler/state-values-utils.cc", | 1009 "src/compiler/state-values-utils.cc", |
| 1008 "src/compiler/state-values-utils.h", | 1010 "src/compiler/state-values-utils.h", |
| (...skipping 1187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2196 sources = [ | 2198 sources = [ |
| 2197 "test/fuzzer/wasm-asmjs.cc", | 2199 "test/fuzzer/wasm-asmjs.cc", |
| 2198 ] | 2200 ] |
| 2199 | 2201 |
| 2200 deps = [ | 2202 deps = [ |
| 2201 ":fuzzer_support", | 2203 ":fuzzer_support", |
| 2202 ] | 2204 ] |
| 2203 | 2205 |
| 2204 configs = [ ":internal_config" ] | 2206 configs = [ ":internal_config" ] |
| 2205 } | 2207 } |
| OLD | NEW |