| 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 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 399 "tools/jsmin.py", | 399 "tools/jsmin.py", |
| 400 ] | 400 ] |
| 401 | 401 |
| 402 # NOSORT | 402 # NOSORT |
| 403 sources = [ | 403 sources = [ |
| 404 "src/js/macros.py", | 404 "src/js/macros.py", |
| 405 "src/messages.h", | 405 "src/messages.h", |
| 406 "src/js/prologue.js", | 406 "src/js/prologue.js", |
| 407 "src/js/runtime.js", | 407 "src/js/runtime.js", |
| 408 "src/js/v8natives.js", | 408 "src/js/v8natives.js", |
| 409 "src/js/symbol.js", | |
| 410 "src/js/array.js", | 409 "src/js/array.js", |
| 411 "src/js/string.js", | 410 "src/js/string.js", |
| 412 "src/js/arraybuffer.js", | 411 "src/js/arraybuffer.js", |
| 413 "src/js/typedarray.js", | 412 "src/js/typedarray.js", |
| 414 "src/js/collection.js", | 413 "src/js/collection.js", |
| 415 "src/js/weak-collection.js", | 414 "src/js/weak-collection.js", |
| 416 "src/js/collection-iterator.js", | 415 "src/js/collection-iterator.js", |
| 417 "src/js/promise.js", | 416 "src/js/promise.js", |
| 418 "src/js/messages.js", | 417 "src/js/messages.js", |
| 419 "src/js/templates.js", | 418 "src/js/templates.js", |
| (...skipping 2573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2993 ] | 2992 ] |
| 2994 | 2993 |
| 2995 configs = [ | 2994 configs = [ |
| 2996 ":external_config", | 2995 ":external_config", |
| 2997 ":internal_config_base", | 2996 ":internal_config_base", |
| 2998 ] | 2997 ] |
| 2999 } | 2998 } |
| 3000 | 2999 |
| 3001 v8_fuzzer("wasm_data_section_fuzzer") { | 3000 v8_fuzzer("wasm_data_section_fuzzer") { |
| 3002 } | 3001 } |
| OLD | NEW |