blob: 83c9875d511a3db7cbe72362863037542656623d [file] [log] [blame]
agl@chromium.orgb9206f42011-11-12 01:09:31 +09001// Copyright (c) 2011 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
danakj0393da32015-03-10 09:31:16 +09005#ifndef BASE_BUILD_TIME_H_
6#define BASE_BUILD_TIME_H_
agl@chromium.orgb9206f42011-11-12 01:09:31 +09007
8#include "base/base_export.h"
avi@chromium.orgb039e8b2013-06-28 09:49:07 +09009#include "base/time/time.h"
agl@chromium.orgb9206f42011-11-12 01:09:31 +090010
11namespace base {
12
zforman173d0a52016-02-12 15:23:42 +090013// GetBuildTime returns the time at which the current binary was built,
14// rounded down to 5:00:00am at the start of the day in UTC.
agl@chromium.orgb9206f42011-11-12 01:09:31 +090015//
zforman173d0a52016-02-12 15:23:42 +090016// This uses a generated file, which doesn't trigger a rebuild when the time
17// changes. It will, however, be updated whenever //build/util/LASTCHANGE
18// changes.
agl@chromium.orgb9206f42011-11-12 01:09:31 +090019//
zforman173d0a52016-02-12 15:23:42 +090020// This value should only be considered accurate to within a day.
21// It will always be in the past.
sebmarchandd1e0d602014-11-01 05:25:52 +090022//
zforman173d0a52016-02-12 15:23:42 +090023// Note: If the build is not official (i.e. is_official_build = false)
24// this time will be set to 5:00:00am on the most recent first Sunday
25// of a month.
agl@chromium.orgb9206f42011-11-12 01:09:31 +090026Time BASE_EXPORT GetBuildTime();
27
28} // namespace base
29
danakj0393da32015-03-10 09:31:16 +090030#endif // BASE_BUILD_TIME_H_