Commit f74d0fa6 authored by Takuto Ikuta's avatar Takuto Ikuta Committed by Commit Bot

Increase link parallelism of linux build

This is re-land of
https://chromium-review.googlesource.com/891043

Changed not to increase link parallelism for chrome on chromeos.

Bug: 807145
Change-Id: I11c49d215704556eaa709af08ffe7226c3df529d
Reviewed-on: https://chromium-review.googlesource.com/892779
Commit-Queue: Takuto Ikuta <tikuta@google.com>
Reviewed-by: default avatarDirk Pranke <dpranke@chromium.org>
Cr-Commit-Position: refs/heads/master@{#533194}
parent 801c5ace
...@@ -35,6 +35,8 @@ if (concurrent_links == -1) { ...@@ -35,6 +35,8 @@ if (concurrent_links == -1) {
_args = [ "--mem_per_link_gb=4" ] _args = [ "--mem_per_link_gb=4" ]
} else if (is_android && !is_component_build && symbol_level == 2) { } else if (is_android && !is_component_build && symbol_level == 2) {
_args = [ "--mem_per_link_gb=25" ] _args = [ "--mem_per_link_gb=25" ]
} else if (is_linux && !is_chromeos && symbol_level == 1) {
_args = [ "--mem_per_link_gb=3" ]
} else { } else {
_args = [] _args = []
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment