summaryrefslogtreecommitdiffstats
path: root/base/build_time.h
blob: 73c01b052bfdd6b2bbd3d1e0f946c896ea7dc183 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef BASE_BUILD_TIME_
#define BASE_BUILD_TIME_

#include "base/base_export.h"
#include "base/time/time.h"

namespace base {

// GetBuildTime returns the time at which the current binary was built.
//
// This uses the __DATE__ and __TIME__ macros, which don't trigger a rebuild
// when they change. However, official builds will always be rebuilt from
// scratch.
//
// Also, since __TIME__ doesn't include a timezone, this value should only be
// considered accurate to a day.
Time BASE_EXPORT GetBuildTime();

}  // namespace base

#endif  // BASE_BUILD_TIME_