| 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 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 398 "src/js/regexp.js", | 398 "src/js/regexp.js", |
| 399 "src/js/arraybuffer.js", | 399 "src/js/arraybuffer.js", |
| 400 "src/js/typedarray.js", | 400 "src/js/typedarray.js", |
| 401 "src/js/iterator-prototype.js", | 401 "src/js/iterator-prototype.js", |
| 402 "src/js/collection.js", | 402 "src/js/collection.js", |
| 403 "src/js/weak-collection.js", | 403 "src/js/weak-collection.js", |
| 404 "src/js/collection-iterator.js", | 404 "src/js/collection-iterator.js", |
| 405 "src/js/promise.js", | 405 "src/js/promise.js", |
| 406 "src/js/messages.js", | 406 "src/js/messages.js", |
| 407 "src/js/array-iterator.js", | 407 "src/js/array-iterator.js", |
| 408 "src/js/string-iterator.js", | |
| 409 "src/js/templates.js", | 408 "src/js/templates.js", |
| 410 "src/js/spread.js", | 409 "src/js/spread.js", |
| 411 "src/js/proxy.js", | 410 "src/js/proxy.js", |
| 412 "src/debug/mirrors.js", | 411 "src/debug/mirrors.js", |
| 413 "src/debug/debug.js", | 412 "src/debug/debug.js", |
| 414 "src/debug/liveedit.js", | 413 "src/debug/liveedit.js", |
| 415 ] | 414 ] |
| 416 | 415 |
| 417 outputs = [ | 416 outputs = [ |
| 418 "$target_gen_dir/libraries.cc", | 417 "$target_gen_dir/libraries.cc", |
| (...skipping 2351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2770 ":fuzzer_support", | 2769 ":fuzzer_support", |
| 2771 ":lib_wasm_section_fuzzer", | 2770 ":lib_wasm_section_fuzzer", |
| 2772 ":wasm_module_runner", | 2771 ":wasm_module_runner", |
| 2773 ] | 2772 ] |
| 2774 | 2773 |
| 2775 configs = [ ":internal_config" ] | 2774 configs = [ ":internal_config" ] |
| 2776 } | 2775 } |
| 2777 | 2776 |
| 2778 v8_fuzzer("wasm_data_section_fuzzer") { | 2777 v8_fuzzer("wasm_data_section_fuzzer") { |
| 2779 } | 2778 } |
| OLD | NEW |