| 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 963 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 974 "src/compilation-cache.cc", | 974 "src/compilation-cache.cc", |
| 975 "src/compilation-cache.h", | 975 "src/compilation-cache.h", |
| 976 "src/compilation-dependencies.cc", | 976 "src/compilation-dependencies.cc", |
| 977 "src/compilation-dependencies.h", | 977 "src/compilation-dependencies.h", |
| 978 "src/compilation-info.cc", | 978 "src/compilation-info.cc", |
| 979 "src/compilation-info.h", | 979 "src/compilation-info.h", |
| 980 "src/compilation-statistics.cc", | 980 "src/compilation-statistics.cc", |
| 981 "src/compilation-statistics.h", | 981 "src/compilation-statistics.h", |
| 982 "src/compiler-dispatcher/compiler-dispatcher-job.cc", | 982 "src/compiler-dispatcher/compiler-dispatcher-job.cc", |
| 983 "src/compiler-dispatcher/compiler-dispatcher-job.h", | 983 "src/compiler-dispatcher/compiler-dispatcher-job.h", |
| 984 "src/compiler-dispatcher/compiler-dispatcher-tracer.cc", |
| 985 "src/compiler-dispatcher/compiler-dispatcher-tracer.h", |
| 984 "src/compiler-dispatcher/optimizing-compile-dispatcher.cc", | 986 "src/compiler-dispatcher/optimizing-compile-dispatcher.cc", |
| 985 "src/compiler-dispatcher/optimizing-compile-dispatcher.h", | 987 "src/compiler-dispatcher/optimizing-compile-dispatcher.h", |
| 986 "src/compiler.cc", | 988 "src/compiler.cc", |
| 987 "src/compiler.h", | 989 "src/compiler.h", |
| 988 "src/compiler/access-builder.cc", | 990 "src/compiler/access-builder.cc", |
| 989 "src/compiler/access-builder.h", | 991 "src/compiler/access-builder.h", |
| 990 "src/compiler/access-info.cc", | 992 "src/compiler/access-info.cc", |
| 991 "src/compiler/access-info.h", | 993 "src/compiler/access-info.h", |
| 992 "src/compiler/all-nodes.cc", | 994 "src/compiler/all-nodes.cc", |
| 993 "src/compiler/all-nodes.h", | 995 "src/compiler/all-nodes.h", |
| (...skipping 1222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2216 "src/base/platform/condition-variable.cc", | 2218 "src/base/platform/condition-variable.cc", |
| 2217 "src/base/platform/condition-variable.h", | 2219 "src/base/platform/condition-variable.h", |
| 2218 "src/base/platform/elapsed-timer.h", | 2220 "src/base/platform/elapsed-timer.h", |
| 2219 "src/base/platform/mutex.cc", | 2221 "src/base/platform/mutex.cc", |
| 2220 "src/base/platform/mutex.h", | 2222 "src/base/platform/mutex.h", |
| 2221 "src/base/platform/platform.h", | 2223 "src/base/platform/platform.h", |
| 2222 "src/base/platform/semaphore.cc", | 2224 "src/base/platform/semaphore.cc", |
| 2223 "src/base/platform/semaphore.h", | 2225 "src/base/platform/semaphore.h", |
| 2224 "src/base/platform/time.cc", | 2226 "src/base/platform/time.cc", |
| 2225 "src/base/platform/time.h", | 2227 "src/base/platform/time.h", |
| 2228 "src/base/ring-buffer.h", |
| 2226 "src/base/safe_conversions.h", | 2229 "src/base/safe_conversions.h", |
| 2227 "src/base/safe_conversions_impl.h", | 2230 "src/base/safe_conversions_impl.h", |
| 2228 "src/base/safe_math.h", | 2231 "src/base/safe_math.h", |
| 2229 "src/base/safe_math_impl.h", | 2232 "src/base/safe_math_impl.h", |
| 2230 "src/base/sys-info.cc", | 2233 "src/base/sys-info.cc", |
| 2231 "src/base/sys-info.h", | 2234 "src/base/sys-info.h", |
| 2232 "src/base/utils/random-number-generator.cc", | 2235 "src/base/utils/random-number-generator.cc", |
| 2233 "src/base/utils/random-number-generator.h", | 2236 "src/base/utils/random-number-generator.h", |
| 2234 ] | 2237 ] |
| 2235 | 2238 |
| (...skipping 746 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2982 ] | 2985 ] |
| 2983 | 2986 |
| 2984 configs = [ | 2987 configs = [ |
| 2985 ":external_config", | 2988 ":external_config", |
| 2986 ":internal_config_base", | 2989 ":internal_config_base", |
| 2987 ] | 2990 ] |
| 2988 } | 2991 } |
| 2989 | 2992 |
| 2990 v8_fuzzer("wasm_data_section_fuzzer") { | 2993 v8_fuzzer("wasm_data_section_fuzzer") { |
| 2991 } | 2994 } |
| OLD | NEW |