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 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
411 "src/js/array.js", | 411 "src/js/array.js", |
412 "src/js/string.js", | 412 "src/js/string.js", |
413 "src/js/regexp.js", | 413 "src/js/regexp.js", |
414 "src/js/arraybuffer.js", | 414 "src/js/arraybuffer.js", |
415 "src/js/typedarray.js", | 415 "src/js/typedarray.js", |
416 "src/js/collection.js", | 416 "src/js/collection.js", |
417 "src/js/weak-collection.js", | 417 "src/js/weak-collection.js", |
418 "src/js/collection-iterator.js", | 418 "src/js/collection-iterator.js", |
419 "src/js/promise.js", | 419 "src/js/promise.js", |
420 "src/js/messages.js", | 420 "src/js/messages.js", |
421 "src/js/array-iterator.js", | |
422 "src/js/templates.js", | 421 "src/js/templates.js", |
423 "src/js/spread.js", | 422 "src/js/spread.js", |
424 "src/js/proxy.js", | 423 "src/js/proxy.js", |
425 "src/js/async-await.js", | 424 "src/js/async-await.js", |
426 "src/debug/mirrors.js", | 425 "src/debug/mirrors.js", |
427 "src/debug/debug.js", | 426 "src/debug/debug.js", |
428 "src/debug/liveedit.js", | 427 "src/debug/liveedit.js", |
429 ] | 428 ] |
430 | 429 |
431 outputs = [ | 430 outputs = [ |
(...skipping 2564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2996 ] | 2995 ] |
2997 | 2996 |
2998 configs = [ | 2997 configs = [ |
2999 ":external_config", | 2998 ":external_config", |
3000 ":internal_config_base", | 2999 ":internal_config_base", |
3001 ] | 3000 ] |
3002 } | 3001 } |
3003 | 3002 |
3004 v8_fuzzer("wasm_data_section_fuzzer") { | 3003 v8_fuzzer("wasm_data_section_fuzzer") { |
3005 } | 3004 } |
OLD | NEW |