Linux Chromium build uses headers and libraries in debian sysroot
instead of system's to provide hermetic build environment.

To compile simple chrome with Goma, builidng like this improve
cache hit ratio because we can expect compile happens in hermetic way.

Bug: 1003264
Change-Id: If7c5f80b5d732635f0b178efca0b9d4ca4a5c9e4
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1846427
Reviewed-by: Takuto Ikuta <tikuta@chromium.org>
Commit-Queue: Yoshisato Yanagisawa <yyanagisawa@chromium.org>
Cr-Original-Commit-Position: refs/heads/master@{#703625}
Cr-Mirrored-From: https://chromium.googlesource.com/chromium/src
Cr-Mirrored-Commit: 287391a16d3de28d1ca7758ec92cb2475c865d1e
This commit is contained in:
Yoshisato Yanagisawa 2019-10-08 08:35:15 +00:00 коммит произвёл Commit Bot
Родитель 5c36051e8d
Коммит cb0a8b9df6
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -125,7 +125,7 @@ gcc_toolchain("host") {
is_clang = cros_host_is_clang
current_cpu = host_cpu
current_os = "linux"
use_sysroot = false
use_sysroot = use_sysroot
}
}
@ -168,6 +168,6 @@ gcc_toolchain("v8_snapshot") {
}
v8_current_cpu = v8_target_cpu
current_os = "linux"
use_sysroot = false
use_sysroot = use_sysroot
}
}