| 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 2575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3007 ] | 3006 ] |
| 3008 | 3007 |
| 3009 configs = [ | 3008 configs = [ |
| 3010 ":external_config", | 3009 ":external_config", |
| 3011 ":internal_config_base", | 3010 ":internal_config_base", |
| 3012 ] | 3011 ] |
| 3013 } | 3012 } |
| 3014 | 3013 |
| 3015 v8_fuzzer("wasm_data_section_fuzzer") { | 3014 v8_fuzzer("wasm_data_section_fuzzer") { |
| 3016 } | 3015 } |
| OLD | NEW |