OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
tfarina
2016/02/16 14:47:05
Btw, how come build_date.cc is seeing this file in
| |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 // When building Chromium with GN, this file is generated by | |
6 // the //base:build_date action and it contains an approximate build date. | |
7 // For GN bootstrapping we still need this file to be available | |
8 // because it is included from base/build_time.cc, but the actual | |
9 // BUILD_DATE define is given as a compiler option set by bootstrap.py. | |
10 #ifndef BUILD_DATE | |
11 #error BUILD_DATE must be defined by bootstrap.py | |
12 #endif // BUILD_DATE | |
OLD | NEW |