LeOSium_webview/LeOS/patches/Re-introduce-override_build...

51 lines
1.5 KiB
Diff
Raw Permalink Normal View History

2023-11-18 11:46:19 +01:00
From: csagan5 <32685696+csagan5@users.noreply.github.com>
Date: Sun, 30 Dec 2018 09:26:12 +0100
Subject: Re-introduce override_build_timestamp
Revert "Remove override_build_date gn arg."
This reverts commit e335101eedd3ab28d16dcb4b22e5ee0b60044b89.
Use (overriden) build timestamp for chrome_version_id
License: GPL-3.0-only - https://spdx.org/licenses/GPL-3.0-only.html
---
base/BUILD.gn | 7 ++++++-
build_overrides/build.gni | 5 +++++
2 files changed, 11 insertions(+), 1 deletion(-)
diff --git a/base/BUILD.gn b/base/BUILD.gn
--- a/base/BUILD.gn
+++ b/base/BUILD.gn
@@ -4099,8 +4099,13 @@ action("build_date") {
args = [
rebase_path("$target_gen_dir/generated_build_date.h", root_build_dir),
- build_timestamp,
]
+
+ if (override_build_timestamp != "N/A") {
+ args += [ override_build_timestamp ]
+ } else {
+ args += [ build_timestamp ]
+ }
}
if (enable_nocompile_tests_new) {
diff --git a/build_overrides/build.gni b/build_overrides/build.gni
--- a/build_overrides/build.gni
+++ b/build_overrides/build.gni
@@ -48,6 +48,11 @@ declare_args() {
# //third_party/robolectric .
limit_android_deps = false
+ # Override this value to give a specific build date.
+ # See //base/build_time.cc and //build/write_build_date_header.py for more
+ # details; expected format is Unix Epoch time in seconds.
+ override_build_timestamp = "N/A"
+
# Allows googletest to pretty-print various absl types. Disabled for nacl due
# to lack of toolchain support.
gtest_enable_absl_printers = !is_nacl
--
2.25.1