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/mips.gni") | 7 import("//build/config/mips.gni") |
8 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
9 | 9 |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
407 # The script depends on this other script, this rule causes a rebuild if it | 407 # The script depends on this other script, this rule causes a rebuild if it |
408 # changes. | 408 # changes. |
409 inputs = [ | 409 inputs = [ |
410 "tools/jsmin.py", | 410 "tools/jsmin.py", |
411 ] | 411 ] |
412 | 412 |
413 # NOSORT | 413 # NOSORT |
414 sources = [ | 414 sources = [ |
415 "src/js/macros.py", | 415 "src/js/macros.py", |
416 "src/messages.h", | 416 "src/messages.h", |
| 417 "src/js/harmony-async-await.js", |
417 "src/js/harmony-atomics.js", | 418 "src/js/harmony-atomics.js", |
418 "src/js/harmony-regexp-exec.js", | 419 "src/js/harmony-regexp-exec.js", |
419 "src/js/harmony-sharedarraybuffer.js", | 420 "src/js/harmony-sharedarraybuffer.js", |
420 "src/js/harmony-simd.js", | 421 "src/js/harmony-simd.js", |
421 "src/js/harmony-species.js", | 422 "src/js/harmony-species.js", |
422 "src/js/harmony-unicode-regexps.js", | 423 "src/js/harmony-unicode-regexps.js", |
423 "src/js/harmony-string-padding.js", | 424 "src/js/harmony-string-padding.js", |
424 "src/js/promise-extra.js", | 425 "src/js/promise-extra.js", |
425 ] | 426 ] |
426 | 427 |
(...skipping 1770 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2197 ] | 2198 ] |
2198 | 2199 |
2199 deps = [ | 2200 deps = [ |
2200 ":fuzzer_support", | 2201 ":fuzzer_support", |
2201 ] | 2202 ] |
2202 | 2203 |
2203 configs = [ | 2204 configs = [ |
2204 ":internal_config", | 2205 ":internal_config", |
2205 ] | 2206 ] |
2206 } | 2207 } |
OLD | NEW |