| 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 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 # The script depends on this other script, this rule causes a rebuild if it | 411 # The script depends on this other script, this rule causes a rebuild if it |
| 412 # changes. | 412 # changes. |
| 413 inputs = [ | 413 inputs = [ |
| 414 "tools/jsmin.py", | 414 "tools/jsmin.py", |
| 415 ] | 415 ] |
| 416 | 416 |
| 417 # NOSORT | 417 # NOSORT |
| 418 sources = [ | 418 sources = [ |
| 419 "src/js/macros.py", | 419 "src/js/macros.py", |
| 420 "src/messages.h", | 420 "src/messages.h", |
| 421 "src/js/harmony-async-await.js", |
| 421 "src/js/harmony-atomics.js", | 422 "src/js/harmony-atomics.js", |
| 422 "src/js/harmony-regexp-exec.js", | 423 "src/js/harmony-regexp-exec.js", |
| 423 "src/js/harmony-sharedarraybuffer.js", | 424 "src/js/harmony-sharedarraybuffer.js", |
| 424 "src/js/harmony-simd.js", | 425 "src/js/harmony-simd.js", |
| 425 "src/js/harmony-species.js", | 426 "src/js/harmony-species.js", |
| 426 "src/js/harmony-unicode-regexps.js", | 427 "src/js/harmony-unicode-regexps.js", |
| 427 "src/js/harmony-string-padding.js", | 428 "src/js/harmony-string-padding.js", |
| 428 "src/js/promise-extra.js", | 429 "src/js/promise-extra.js", |
| 429 ] | 430 ] |
| 430 | 431 |
| (...skipping 1776 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2207 ] | 2208 ] |
| 2208 | 2209 |
| 2209 deps = [ | 2210 deps = [ |
| 2210 ":fuzzer_support", | 2211 ":fuzzer_support", |
| 2211 ] | 2212 ] |
| 2212 | 2213 |
| 2213 configs = [ | 2214 configs = [ |
| 2214 ":internal_config", | 2215 ":internal_config", |
| 2215 ] | 2216 ] |
| 2216 } | 2217 } |
| OLD | NEW |