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

Unified Diff: third_party/mojo/src/mojo/public/tools/gn/zip.py

Issue 975973002: Update mojo sdk to rev f68e697e389943cd9bf9652397312280e96b127a (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: shake fist at msvc Created 5 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 side-by-side diff with in-line comments
Download patch
Index: third_party/mojo/src/mojo/public/tools/gn/zip.py
diff --git a/third_party/mojo/src/mojo/public/tools/gn/zip.py b/third_party/mojo/src/mojo/public/tools/gn/zip.py
index c703144b21c152ae34c8a88f8aa7ffa9e3ac8c4b..506eb9ea2a4203cb8fa14535413e7b559aa53a2a 100755
--- a/third_party/mojo/src/mojo/public/tools/gn/zip.py
+++ b/third_party/mojo/src/mojo/public/tools/gn/zip.py
@@ -41,7 +41,9 @@ def main():
options, _ = parser.parse_args()
- inputs = ast.literal_eval(options.inputs)
+ inputs = []
+ if (options.inputs):
+ inputs = ast.literal_eval(options.inputs)
zip_inputs = []
if options.zip_inputs:
zip_inputs = ast.literal_eval(options.zip_inputs)
« no previous file with comments | « third_party/mojo/src/mojo/public/tools/download_shell_binary.py ('k') | third_party/mojo/src/nacl_bindings/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698