build: Force determinism in official build

Helps build with ccache.
This commit is contained in:
klzgrad 2019-01-11 11:49:08 +00:00
parent bb780643a0
commit 45eeaaa804

View File

@ -1498,7 +1498,7 @@ config("compiler_deterministic") {
# Eliminate build metadata (__DATE__, __TIME__ and __TIMESTAMP__) for
# deterministic build. See https://crbug.com/314403
if (!is_official_build) {
if (true) {
if (is_win && !is_clang) {
cflags += [
"/wd4117", # Trying to define or undefine a predefined macro.