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

Side by Side Diff: BUILD.gn

Issue 1796863002: Remove snapshot log parsing and option from tools. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 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 | tools/gyp/v8.gyp » ('j') | tools/ll_prof.py » ('J')
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/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 474 matching lines...) Expand 10 before | Expand all | Expand 10 after
485 485
486 outputs = [ 486 outputs = [
487 "$target_gen_dir/snapshot.cc", 487 "$target_gen_dir/snapshot.cc",
488 ] 488 ]
489 489
490 args = [ 490 args = [
491 "./" + rebase_path(get_label_info(":mksnapshot($snapshot_toolchain)", 491 "./" + rebase_path(get_label_info(":mksnapshot($snapshot_toolchain)",
492 "root_out_dir") + "/mksnapshot", 492 "root_out_dir") + "/mksnapshot",
493 root_build_dir), 493 root_build_dir),
494 "--log-snapshot-positions", 494 "--log-snapshot-positions",
495 "--logfile",
496 rebase_path("$target_gen_dir/snapshot.log", root_build_dir),
497 "--startup_src", 495 "--startup_src",
498 rebase_path("$target_gen_dir/snapshot.cc", root_build_dir), 496 rebase_path("$target_gen_dir/snapshot.cc", root_build_dir),
499 ] 497 ]
500 498
501 if (v8_random_seed != "0") { 499 if (v8_random_seed != "0") {
502 args += [ 500 args += [
503 "--random-seed", 501 "--random-seed",
504 v8_random_seed, 502 v8_random_seed,
505 ] 503 ]
506 } 504 }
(...skipping 1584 matching lines...) Expand 10 before | Expand all | Expand 10 after
2091 2089
2092 configs -= [ "//build/config/compiler:chromium_code" ] 2090 configs -= [ "//build/config/compiler:chromium_code" ]
2093 configs += [ "//build/config/compiler:no_chromium_code" ] 2091 configs += [ "//build/config/compiler:no_chromium_code" ]
2094 configs += [ 2092 configs += [
2095 ":internal_config", 2093 ":internal_config",
2096 ":libplatform_config", 2094 ":libplatform_config",
2097 ":features", 2095 ":features",
2098 ":toolchain", 2096 ":toolchain",
2099 ] 2097 ]
2100 } 2098 }
OLDNEW
« no previous file with comments | « no previous file | tools/gyp/v8.gyp » ('j') | tools/ll_prof.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698