Commit 26a87516 by Jamie Madill Committed by Commit Bot

Remove overlay font hash from codegen.

This prevents a presubmit error on Windows. Seems like the binary file differs somehow. Remove it from the hashes until we can investigate. Bug: angleproject:3892 Change-Id: I4f06dbe37e3e02f9905654d202a8b4fba78b9323 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/1783403Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent 1f6f6920
...@@ -4,7 +4,5 @@ ...@@ -4,7 +4,5 @@
"src/libANGLE/Overlay_font_autogen.h": "src/libANGLE/Overlay_font_autogen.h":
"2eae247cebb716c4f591de8a251b4a8e", "2eae247cebb716c4f591de8a251b4a8e",
"src/libANGLE/gen_overlay_fonts.py": "src/libANGLE/gen_overlay_fonts.py":
"e257b626441bf057856eb357a1a2ca5c", "0f218173d179248f6f16f9be7c9d9ec3"
"src/libANGLE/overlay/DejaVuSansMono-Bold.ttf":
"f580ed7569a1967ceeb96fa3e1b234d4"
} }
\ No newline at end of file
...@@ -144,7 +144,8 @@ template_get_font_layer_pixel = u"""case {layer}: ...@@ -144,7 +144,8 @@ template_get_font_layer_pixel = u"""case {layer}:
def main(): def main():
if len(sys.argv) == 2 and sys.argv[1] == 'inputs': if len(sys.argv) == 2 and sys.argv[1] == 'inputs':
print(font_file) # disabled because of issues on Windows. http://anglebug.com/3892
# print(font_file)
return return
if len(sys.argv) == 2 and sys.argv[1] == 'outputs': if len(sys.argv) == 2 and sys.argv[1] == 'outputs':
print(','.join([out_file_cpp, out_file_h])) print(','.join([out_file_cpp, out_file_h]))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment