Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Side by Side Diff: BUILD.gn

Issue 2268633002: Remove --intl-extra flag (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix bootstrapper Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 ] 458 ]
459 459
460 outputs = [ 460 outputs = [
461 "$target_gen_dir/experimental-libraries.cc", 461 "$target_gen_dir/experimental-libraries.cc",
462 ] 462 ]
463 463
464 if (v8_enable_i18n_support) { 464 if (v8_enable_i18n_support) {
465 sources += [ 465 sources += [
466 "src/js/datetime-format-to-parts.js", 466 "src/js/datetime-format-to-parts.js",
467 "src/js/icu-case-mapping.js", 467 "src/js/icu-case-mapping.js",
468 "src/js/intl-extra.js",
469 ] 468 ]
470 } 469 }
471 470
472 args = [ 471 args = [
473 rebase_path("$target_gen_dir/experimental-libraries.cc", 472 rebase_path("$target_gen_dir/experimental-libraries.cc",
474 root_build_dir), 473 root_build_dir),
475 "EXPERIMENTAL", 474 "EXPERIMENTAL",
476 ] + rebase_path(sources, root_build_dir) 475 ] + rebase_path(sources, root_build_dir)
477 476
478 if (v8_use_external_startup_data) { 477 if (v8_use_external_startup_data) {
(...skipping 2292 matching lines...) Expand 10 before | Expand all | Expand 10 after
2771 ":fuzzer_support", 2770 ":fuzzer_support",
2772 ":lib_wasm_section_fuzzer", 2771 ":lib_wasm_section_fuzzer",
2773 ":wasm_module_runner", 2772 ":wasm_module_runner",
2774 ] 2773 ]
2775 2774
2776 configs = [ ":internal_config" ] 2775 configs = [ ":internal_config" ]
2777 } 2776 }
2778 2777
2779 v8_fuzzer("wasm_data_section_fuzzer") { 2778 v8_fuzzer("wasm_data_section_fuzzer") {
2780 } 2779 }
OLDNEW
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698