| 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 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 # NOSORT | 391 # NOSORT |
| 392 sources = [ | 392 sources = [ |
| 393 "src/js/macros.py", | 393 "src/js/macros.py", |
| 394 "src/messages.h", | 394 "src/messages.h", |
| 395 "src/js/prologue.js", | 395 "src/js/prologue.js", |
| 396 "src/js/runtime.js", | 396 "src/js/runtime.js", |
| 397 "src/js/v8natives.js", | 397 "src/js/v8natives.js", |
| 398 "src/js/symbol.js", | 398 "src/js/symbol.js", |
| 399 "src/js/array.js", | 399 "src/js/array.js", |
| 400 "src/js/string.js", | 400 "src/js/string.js", |
| 401 "src/js/math.js", | |
| 402 "src/js/regexp.js", | 401 "src/js/regexp.js", |
| 403 "src/js/arraybuffer.js", | 402 "src/js/arraybuffer.js", |
| 404 "src/js/typedarray.js", | 403 "src/js/typedarray.js", |
| 405 "src/js/collection.js", | 404 "src/js/collection.js", |
| 406 "src/js/weak-collection.js", | 405 "src/js/weak-collection.js", |
| 407 "src/js/collection-iterator.js", | 406 "src/js/collection-iterator.js", |
| 408 "src/js/promise.js", | 407 "src/js/promise.js", |
| 409 "src/js/messages.js", | 408 "src/js/messages.js", |
| 410 "src/js/array-iterator.js", | 409 "src/js/array-iterator.js", |
| 411 "src/js/templates.js", | 410 "src/js/templates.js", |
| (...skipping 2567 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2979 ] | 2978 ] |
| 2980 | 2979 |
| 2981 configs = [ | 2980 configs = [ |
| 2982 ":external_config", | 2981 ":external_config", |
| 2983 ":internal_config_base", | 2982 ":internal_config_base", |
| 2984 ] | 2983 ] |
| 2985 } | 2984 } |
| 2986 | 2985 |
| 2987 v8_fuzzer("wasm_data_section_fuzzer") { | 2986 v8_fuzzer("wasm_data_section_fuzzer") { |
| 2988 } | 2987 } |
| OLD | NEW |