Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Side by Side Diff: third_party/yasm/CHROMIUM.diff

Issue 1641413002: Makes GetBuildTime behave identically on all build types. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Hook based approach Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 --- frontends/tasm/tasm.c 1 --- frontends/tasm/tasm.c
2 +++ frontends/tasm/tasm.c 2 +++ frontends/tasm/tasm.c
3 @@ -224,7 +224,9 @@ 3 @@ -224,7 +224,9 @@
4 /* version message */ 4 /* version message */
5 /*@observer@*/ static const char *version_msg[] = { 5 /*@observer@*/ static const char *version_msg[] = {
6 PACKAGE_STRING, 6 PACKAGE_STRING,
7 +#if !defined(DONT_EMBED_BUILD_METADATA) || defined(OFFICIAL_BUILD) 7 - "Compiled on " __DATE__ ".",
M-A Ruel 2016/02/06 02:24:37 We actually need to update the code. So skip the c
Zachary Forman 2016/02/09 00:02:04 Ack
8 "Compiled on " __DATE__ ".",
9 +#endif
10 "Copyright (c) 2001-2010 Peter Johnson and other Yasm developers.", 8 "Copyright (c) 2001-2010 Peter Johnson and other Yasm developers.",
11 "Run yasm --license for licensing overview and summary." 9 "Run yasm --license for licensing overview and summary."
12 }; 10 };
13 --- frontends/yasm/yasm.c 11 --- frontends/yasm/yasm.c
14 +++ frontends/yasm/yasm.c 12 +++ frontends/yasm/yasm.c
15 @@ -213,7 +213,9 @@ 13 @@ -213,7 +213,9 @@
16 /* version message */ 14 /* version message */
17 /*@observer@*/ static const char *version_msg[] = { 15 /*@observer@*/ static const char *version_msg[] = {
18 PACKAGE_STRING, 16 PACKAGE_STRING,
19 +#if !defined(DONT_EMBED_BUILD_METADATA) || defined(OFFICIAL_BUILD) 17 - "Compiled on " __DATE__ ".",
20 "Compiled on " __DATE__ ".",
21 +#endif
22 "Copyright (c) 2001-2011 Peter Johnson and other Yasm developers.", 18 "Copyright (c) 2001-2011 Peter Johnson and other Yasm developers.",
23 "Run yasm --license for licensing overview and summary." 19 "Run yasm --license for licensing overview and summary."
24 }; 20 };
OLDNEW
« build/write_build_date_header.py ('K') | « net/http/transport_security_state.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698