[go: nahoru, domu]

Roll patched-yasm to remove the __DATE__ reference.

R=dalecurtis@chromium.org
BUG=314403

Review URL: https://codereview.chromium.org/1680753003

Cr-Commit-Position: refs/heads/master@{#374176}
diff --git a/DEPS b/DEPS
index 4c68dc6..f49930f 100644
--- a/DEPS
+++ b/DEPS
@@ -200,7 +200,7 @@
    Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '9cc4f2f799887e5d64bd28c159ea34b413f6be31', # from svn revision 295151
 
   'src/third_party/yasm/source/patched-yasm':
-   Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + '4671120cd8558ce62ee8672ebf3eb6f5216f909b',
+   Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + '7da28c6c7c6a1387217352ce02b31754deb54d2a',
 
   'src/third_party/libjpeg_turbo':
    Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + 'e4e75037f29745f1546b6ebf5cf532e841c04c2c',
diff --git a/third_party/yasm/CHROMIUM.diff b/third_party/yasm/CHROMIUM.diff
index 764cbf7..80fd767 100644
--- a/third_party/yasm/CHROMIUM.diff
+++ b/third_party/yasm/CHROMIUM.diff
@@ -4,9 +4,7 @@
  /* version message */
  /*@observer@*/ static const char *version_msg[] = {
      PACKAGE_STRING,
-+#if !defined(DONT_EMBED_BUILD_METADATA) || defined(OFFICIAL_BUILD)
-     "Compiled on " __DATE__ ".",
-+#endif
+-    "Compiled on " __DATE__ ".",
      "Copyright (c) 2001-2010 Peter Johnson and other Yasm developers.",
      "Run yasm --license for licensing overview and summary."
  };
@@ -16,9 +14,7 @@
  /* version message */
  /*@observer@*/ static const char *version_msg[] = {
      PACKAGE_STRING,
-+#if !defined(DONT_EMBED_BUILD_METADATA) || defined(OFFICIAL_BUILD)
-     "Compiled on " __DATE__ ".",
-+#endif
+-    "Compiled on " __DATE__ ".",
      "Copyright (c) 2001-2011 Peter Johnson and other Yasm developers.",
      "Run yasm --license for licensing overview and summary."
  };
diff --git a/third_party/yasm/README.chromium b/third_party/yasm/README.chromium
index 7006a6341..81b286f 100644
--- a/third_party/yasm/README.chromium
+++ b/third_party/yasm/README.chromium
@@ -13,7 +13,7 @@
 * https://github.com/yasm/yasm/commit/2bd66514b6b100887c19d8598da38347b3cff40e
 * https://github.com/yasm/yasm/commit/ab19547382660d81e0b4a0232dccb38f44c52a36
 * https://github.com/yasm/yasm/commit/9728322335cba96500861ef766b1546d096e5600
-* CHROMIUM.diff
+* CHROMIUM.diff: this patch makes yasm deterministic.
 
 
 See also the yasm.gyp file for a description of the yasm build process.