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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
392 sources = [ | 392 sources = [ |
393 "src/js/macros.py", | 393 "src/js/macros.py", |
394 "src/messages.h", | 394 "src/messages.h", |
395 "src/js/harmony-atomics.js", | 395 "src/js/harmony-atomics.js", |
396 "src/js/harmony-regexp-exec.js", | 396 "src/js/harmony-regexp-exec.js", |
397 "src/js/harmony-sharedarraybuffer.js", | 397 "src/js/harmony-sharedarraybuffer.js", |
398 "src/js/harmony-simd.js", | 398 "src/js/harmony-simd.js", |
399 "src/js/harmony-species.js", | 399 "src/js/harmony-species.js", |
400 "src/js/harmony-unicode-regexps.js", | 400 "src/js/harmony-unicode-regexps.js", |
401 "src/js/harmony-string-padding.js", | 401 "src/js/harmony-string-padding.js", |
| 402 "src/js/intl-extra.js", |
402 "src/js/promise-extra.js", | 403 "src/js/promise-extra.js", |
403 ] | 404 ] |
404 | 405 |
405 outputs = [ | 406 outputs = [ |
406 "$target_gen_dir/experimental-libraries.cc", | 407 "$target_gen_dir/experimental-libraries.cc", |
407 ] | 408 ] |
408 | 409 |
409 args = [ | 410 args = [ |
410 rebase_path("$target_gen_dir/experimental-libraries.cc", | 411 rebase_path("$target_gen_dir/experimental-libraries.cc", |
411 root_build_dir), | 412 root_build_dir), |
(...skipping 1838 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2250 | 2251 |
2251 configs -= [ "//build/config/compiler:chromium_code" ] | 2252 configs -= [ "//build/config/compiler:chromium_code" ] |
2252 configs += [ "//build/config/compiler:no_chromium_code" ] | 2253 configs += [ "//build/config/compiler:no_chromium_code" ] |
2253 configs += [ | 2254 configs += [ |
2254 ":internal_config", | 2255 ":internal_config", |
2255 ":libplatform_config", | 2256 ":libplatform_config", |
2256 ":features", | 2257 ":features", |
2257 ":toolchain", | 2258 ":toolchain", |
2258 ] | 2259 ] |
2259 } | 2260 } |
OLD | NEW |