Make the Linux PGO build use the archived profiles

Bug: 1111437
Change-Id: I20ed7be5fa1b15214b7db7f37527e54cbe101be3
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2353492
Reviewed-by: Yuke Liao <liaoyuke@chromium.org>
Reviewed-by: Nico Weber <thakis@chromium.org>
Commit-Queue: Sébastien Marchand <sebmarchand@chromium.org>
Commit-Queue: Nico Weber <thakis@chromium.org>
Auto-Submit: Sébastien Marchand <sebmarchand@chromium.org>
Cr-Commit-Position: refs/heads/master@{#799643}
GitOrigin-RevId: 5e903fe1b8b24ed9a79f78d3065d4910a9db82f2
This commit is contained in:
Sebastien Marchand 2020-08-19 15:44:42 +00:00 коммит произвёл Copybara-Service
Родитель 638e407424
Коммит c89677f783
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -49,6 +49,9 @@ config("pgo_optimization_flags") {
} else if (is_mac) {
_pgo_target = "mac"
inputs = [ "//chrome/build/mac.pgo.txt" ]
} else if (is_linux) {
_pgo_target = "linux"
inputs = [ "//chrome/build/linux.pgo.txt" ]
}
if (pgo_data_path == "" && _pgo_target != "") {