Enable use_custom_libcxx on Linux

This commit is contained in:
Cheng Zhao 2018-01-30 11:04:36 +09:00 коммит произвёл Aleksei Kuzmin
Родитель c5af73c02f
Коммит ea48c0c935
3 изменённых файлов: 12 добавлений и 6 удалений

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

@ -7,8 +7,10 @@ proprietary_codecs = false
is_component_ffmpeg = true
ffmpeg_branding = "Chromium"
# Always use the system provided standard library
use_custom_libcxx = false
# Use the system provided standard library on platforms other than Linux.
if (target_os != "linux") {
use_custom_libcxx = false
}
# Jumbo build should improve compilation times.
# https://chromium.googlesource.com/chromium/src/+/master/docs/jumbo.md

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

@ -10,8 +10,10 @@ proprietary_codecs = true
is_component_ffmpeg = true
ffmpeg_branding = "Chrome"
# Always use the system provided standard library
use_custom_libcxx = false
# Use the system provided standard library on platforms other than Linux.
if (target_os != "linux") {
use_custom_libcxx = false
}
# Jumbo build should improve compilation times.
# https://chromium.googlesource.com/chromium/src/+/master/docs/jumbo.md

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

@ -14,8 +14,10 @@ ffmpeg_branding = "Chrome"
# scenario
is_cfi = false
# Always use the system provided standard library
use_custom_libcxx = false
# Use the system provided standard library on platforms other than Linux.
if (target_os != "linux") {
use_custom_libcxx = false
}
# Jumbo build should improve compilation times.
# https://chromium.googlesource.com/chromium/src/+/master/docs/jumbo.md