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 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
424 ] | 424 ] |
425 | 425 |
426 # NOSORT | 426 # NOSORT |
427 sources = [ | 427 sources = [ |
428 "src/js/macros.py", | 428 "src/js/macros.py", |
429 "src/messages.h", | 429 "src/messages.h", |
430 "src/js/harmony-async-await.js", | 430 "src/js/harmony-async-await.js", |
431 "src/js/harmony-atomics.js", | 431 "src/js/harmony-atomics.js", |
432 "src/js/harmony-simd.js", | 432 "src/js/harmony-simd.js", |
433 "src/js/harmony-string-padding.js", | 433 "src/js/harmony-string-padding.js", |
434 "src/js/promise-extra.js", | |
435 ] | 434 ] |
436 | 435 |
437 outputs = [ | 436 outputs = [ |
438 "$target_gen_dir/experimental-libraries.cc", | 437 "$target_gen_dir/experimental-libraries.cc", |
439 ] | 438 ] |
440 | 439 |
441 if (v8_enable_i18n_support) { | 440 if (v8_enable_i18n_support) { |
442 sources += [ | 441 sources += [ |
443 "src/js/icu-case-mapping.js", | 442 "src/js/icu-case-mapping.js", |
444 "src/js/intl-extra.js", | 443 "src/js/intl-extra.js", |
(...skipping 2130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2575 | 2574 |
2576 deps = [ | 2575 deps = [ |
2577 ":fuzzer_support", | 2576 ":fuzzer_support", |
2578 ] | 2577 ] |
2579 | 2578 |
2580 configs = [ ":internal_config" ] | 2579 configs = [ ":internal_config" ] |
2581 } | 2580 } |
2582 | 2581 |
2583 v8_fuzzer("wasm_asmjs_fuzzer") { | 2582 v8_fuzzer("wasm_asmjs_fuzzer") { |
2584 } | 2583 } |
OLD | NEW |