[M73 Dev][Tizen] Fix compilation errors for TV profile
[platform/framework/web/chromium-efl.git] / base / build_time.cc
1 // 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
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/logging.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 normally expected to
19   // be "05:00:00" 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