| 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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 sources = [ | 329 sources = [ |
| 330 "src/js/macros.py", | 330 "src/js/macros.py", |
| 331 "src/messages.h", | 331 "src/messages.h", |
| 332 "src/js/prologue.js", | 332 "src/js/prologue.js", |
| 333 "src/js/runtime.js", | 333 "src/js/runtime.js", |
| 334 "src/js/v8natives.js", | 334 "src/js/v8natives.js", |
| 335 "src/js/symbol.js", | 335 "src/js/symbol.js", |
| 336 "src/js/array.js", | 336 "src/js/array.js", |
| 337 "src/js/string.js", | 337 "src/js/string.js", |
| 338 "src/js/math.js", | 338 "src/js/math.js", |
| 339 "src/third_party/fdlibm/fdlibm.js", | |
| 340 "src/js/regexp.js", | 339 "src/js/regexp.js", |
| 341 "src/js/arraybuffer.js", | 340 "src/js/arraybuffer.js", |
| 342 "src/js/typedarray.js", | 341 "src/js/typedarray.js", |
| 343 "src/js/iterator-prototype.js", | 342 "src/js/iterator-prototype.js", |
| 344 "src/js/collection.js", | 343 "src/js/collection.js", |
| 345 "src/js/weak-collection.js", | 344 "src/js/weak-collection.js", |
| 346 "src/js/collection-iterator.js", | 345 "src/js/collection-iterator.js", |
| 347 "src/js/promise.js", | 346 "src/js/promise.js", |
| 348 "src/js/messages.js", | 347 "src/js/messages.js", |
| 349 "src/js/array-iterator.js", | 348 "src/js/array-iterator.js", |
| (...skipping 2001 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2351 | 2350 |
| 2352 deps = [ | 2351 deps = [ |
| 2353 ":fuzzer_support", | 2352 ":fuzzer_support", |
| 2354 ] | 2353 ] |
| 2355 | 2354 |
| 2356 configs = [ ":internal_config" ] | 2355 configs = [ ":internal_config" ] |
| 2357 } | 2356 } |
| 2358 | 2357 |
| 2359 v8_fuzzer("wasm_asmjs_fuzzer") { | 2358 v8_fuzzer("wasm_asmjs_fuzzer") { |
| 2360 } | 2359 } |
| OLD | NEW |