| 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 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 inputs = [ | 384 inputs = [ |
| 385 "tools/jsmin.py", | 385 "tools/jsmin.py", |
| 386 ] | 386 ] |
| 387 | 387 |
| 388 # NOSORT | 388 # NOSORT |
| 389 sources = [ | 389 sources = [ |
| 390 "src/js/macros.py", | 390 "src/js/macros.py", |
| 391 "src/messages.h", | 391 "src/messages.h", |
| 392 "src/js/harmony-async-await.js", | 392 "src/js/harmony-async-await.js", |
| 393 "src/js/harmony-atomics.js", | 393 "src/js/harmony-atomics.js", |
| 394 "src/js/harmony-regexp-exec.js", | |
| 395 "src/js/harmony-sharedarraybuffer.js", | 394 "src/js/harmony-sharedarraybuffer.js", |
| 396 "src/js/harmony-simd.js", | 395 "src/js/harmony-simd.js", |
| 397 "src/js/harmony-species.js", | |
| 398 "src/js/harmony-unicode-regexps.js", | |
| 399 "src/js/harmony-string-padding.js", | 396 "src/js/harmony-string-padding.js", |
| 400 "src/js/promise-extra.js", | 397 "src/js/promise-extra.js", |
| 401 ] | 398 ] |
| 402 | 399 |
| 403 outputs = [ | 400 outputs = [ |
| 404 "$target_gen_dir/experimental-libraries.cc", | 401 "$target_gen_dir/experimental-libraries.cc", |
| 405 ] | 402 ] |
| 406 | 403 |
| 407 if (v8_enable_i18n_support) { | 404 if (v8_enable_i18n_support) { |
| 408 sources += [ | 405 sources += [ |
| (...skipping 1907 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2316 | 2313 |
| 2317 deps = [ | 2314 deps = [ |
| 2318 ":fuzzer_support", | 2315 ":fuzzer_support", |
| 2319 ] | 2316 ] |
| 2320 | 2317 |
| 2321 configs = [ ":internal_config" ] | 2318 configs = [ ":internal_config" ] |
| 2322 } | 2319 } |
| 2323 | 2320 |
| 2324 v8_fuzzer("wasm_asmjs_fuzzer") { | 2321 v8_fuzzer("wasm_asmjs_fuzzer") { |
| 2325 } | 2322 } |
| OLD | NEW |