| 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 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 430 "src/js/arraybuffer.js", | 430 "src/js/arraybuffer.js", |
| 431 "src/js/typedarray.js", | 431 "src/js/typedarray.js", |
| 432 "src/js/collection.js", | 432 "src/js/collection.js", |
| 433 "src/js/weak-collection.js", | 433 "src/js/weak-collection.js", |
| 434 "src/js/collection-iterator.js", | 434 "src/js/collection-iterator.js", |
| 435 "src/js/promise.js", | 435 "src/js/promise.js", |
| 436 "src/js/messages.js", | 436 "src/js/messages.js", |
| 437 "src/js/templates.js", | 437 "src/js/templates.js", |
| 438 "src/js/spread.js", | 438 "src/js/spread.js", |
| 439 "src/js/proxy.js", | 439 "src/js/proxy.js", |
| 440 "src/js/async-await.js", | |
| 441 "src/js/harmony-string-padding.js", | 440 "src/js/harmony-string-padding.js", |
| 442 "src/debug/mirrors.js", | 441 "src/debug/mirrors.js", |
| 443 "src/debug/debug.js", | 442 "src/debug/debug.js", |
| 444 "src/debug/liveedit.js", | 443 "src/debug/liveedit.js", |
| 445 ] | 444 ] |
| 446 | 445 |
| 447 outputs = [ | 446 outputs = [ |
| 448 "$target_gen_dir/libraries.cc", | 447 "$target_gen_dir/libraries.cc", |
| 449 ] | 448 ] |
| 450 | 449 |
| (...skipping 2611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3062 ] | 3061 ] |
| 3063 | 3062 |
| 3064 configs = [ | 3063 configs = [ |
| 3065 ":external_config", | 3064 ":external_config", |
| 3066 ":internal_config_base", | 3065 ":internal_config_base", |
| 3067 ] | 3066 ] |
| 3068 } | 3067 } |
| 3069 | 3068 |
| 3070 v8_fuzzer("wasm_data_section_fuzzer") { | 3069 v8_fuzzer("wasm_data_section_fuzzer") { |
| 3071 } | 3070 } |
| OLD | NEW |