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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
380 # The script depends on this other script, this rule causes a rebuild if it | 380 # The script depends on this other script, this rule causes a rebuild if it |
381 # changes. | 381 # changes. |
382 inputs = [ | 382 inputs = [ |
383 "tools/jsmin.py", | 383 "tools/jsmin.py", |
384 ] | 384 ] |
385 | 385 |
386 # NOSORT | 386 # NOSORT |
387 sources = [ | 387 sources = [ |
388 "src/js/macros.py", | 388 "src/js/macros.py", |
389 "src/messages.h", | 389 "src/messages.h", |
| 390 "src/js/harmony-async-await.js", |
390 "src/js/harmony-atomics.js", | 391 "src/js/harmony-atomics.js", |
391 "src/js/harmony-regexp-exec.js", | 392 "src/js/harmony-regexp-exec.js", |
392 "src/js/harmony-sharedarraybuffer.js", | 393 "src/js/harmony-sharedarraybuffer.js", |
393 "src/js/harmony-simd.js", | 394 "src/js/harmony-simd.js", |
394 "src/js/harmony-species.js", | 395 "src/js/harmony-species.js", |
395 "src/js/harmony-unicode-regexps.js", | 396 "src/js/harmony-unicode-regexps.js", |
396 "src/js/harmony-string-padding.js", | 397 "src/js/harmony-string-padding.js", |
397 "src/js/promise-extra.js", | 398 "src/js/promise-extra.js", |
398 ] | 399 ] |
399 | 400 |
(...skipping 1903 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2303 ":v8", | 2304 ":v8", |
2304 ":v8_libplatform", | 2305 ":v8_libplatform", |
2305 "//build/config/sanitizers:deps", | 2306 "//build/config/sanitizers:deps", |
2306 "//build/win:default_exe_manifest", | 2307 "//build/win:default_exe_manifest", |
2307 ] | 2308 ] |
2308 | 2309 |
2309 if (v8_enable_i18n_support) { | 2310 if (v8_enable_i18n_support) { |
2310 deps += [ "//third_party/icu" ] | 2311 deps += [ "//third_party/icu" ] |
2311 } | 2312 } |
2312 } | 2313 } |
OLD | NEW |