[M108 Migration][VD] Support set time and time zone offset
[platform/framework/web/chromium-efl.git] / base / build_time.cc
1 // Copyright 2011 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/build_time.h"
6
7 // Imports the generated build date, i.e. BUILD_DATE.
8 #include "base/generated_build_date.h"
9
10 #include "base/check.h"
11 #include "base/time/time.h"
12
13 namespace base {
14
15 Time GetBuildTime() {
16   Time integral_build_time;
17   // BUILD_DATE is exactly "Mmm DD YYYY HH:MM:SS".
18   // See //build/write_build_date_header.py. "HH:MM:SS" is expected to
19   // be "05:00:00" in non-official builds but is not enforced here.
20   bool result = Time::FromUTCString(BUILD_DATE, &integral_build_time);
21   DCHECK(result);
22   return integral_build_time;
23 }
24
25 }  // namespace base