| 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 | 8 |
| 9 # Because standalone V8 builds are not supported, assume this is part of a | 9 # Because standalone V8 builds are not supported, assume this is part of a |
| 10 # Chromium build. | 10 # Chromium build. |
| (...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 481 "$target_gen_dir/snapshot.cc", | 481 "$target_gen_dir/snapshot.cc", |
| 482 ] | 482 ] |
| 483 | 483 |
| 484 args = [ | 484 args = [ |
| 485 "./" + rebase_path(get_label_info(":mksnapshot($snapshot_toolchain)", | 485 "./" + rebase_path(get_label_info(":mksnapshot($snapshot_toolchain)", |
| 486 "root_out_dir") + "/mksnapshot", | 486 "root_out_dir") + "/mksnapshot", |
| 487 root_build_dir), | 487 root_build_dir), |
| 488 "--log-snapshot-positions", | 488 "--log-snapshot-positions", |
| 489 "--logfile", | 489 "--logfile", |
| 490 rebase_path("$target_gen_dir/snapshot.log", root_build_dir), | 490 rebase_path("$target_gen_dir/snapshot.log", root_build_dir), |
| 491 "--startup_src", |
| 491 rebase_path("$target_gen_dir/snapshot.cc", root_build_dir), | 492 rebase_path("$target_gen_dir/snapshot.cc", root_build_dir), |
| 492 ] | 493 ] |
| 493 | 494 |
| 494 if (v8_random_seed != "0") { | 495 if (v8_random_seed != "0") { |
| 495 args += [ | 496 args += [ |
| 496 "--random-seed", | 497 "--random-seed", |
| 497 v8_random_seed, | 498 v8_random_seed, |
| 498 ] | 499 ] |
| 499 } | 500 } |
| 500 | 501 |
| (...skipping 1319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1820 if (!is_component_build) { | 1821 if (!is_component_build) { |
| 1821 sources += [ | 1822 sources += [ |
| 1822 "$target_gen_dir/d8-js.cc", | 1823 "$target_gen_dir/d8-js.cc", |
| 1823 ] | 1824 ] |
| 1824 } | 1825 } |
| 1825 if (v8_enable_i18n_support) { | 1826 if (v8_enable_i18n_support) { |
| 1826 deps += [ "//third_party/icu" ] | 1827 deps += [ "//third_party/icu" ] |
| 1827 } | 1828 } |
| 1828 } | 1829 } |
| 1829 } | 1830 } |
| OLD | NEW |